Show / Hide Table of Contents

Class EipArgs

Inheritance
System.Object
InputArgs
ResourceArgs
EipArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public sealed class EipArgs : ResourceArgs

Constructors

View Source

EipArgs()

Declaration
public EipArgs()

Properties

View Source

AssociateWithPrivateIp

A user specified primary or secondary private IP address to associate with the Elastic IP address. If no private IP address is specified, the Elastic IP address is associated with the primary private IP address.

Declaration
public Input<string> AssociateWithPrivateIp { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CustomerOwnedIpv4Pool

The ID of a customer-owned address pool. For more on customer owned IP addressed check out Customer-owned IP addresses guide

Declaration
public Input<string> CustomerOwnedIpv4Pool { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Instance

EC2 instance ID.

Declaration
public Input<string> Instance { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NetworkInterface

Network interface ID to associate with.

Declaration
public Input<string> NetworkInterface { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PublicIpv4Pool

EC2 IPv4 address pool identifier or amazon. This option is only available for VPC EIPs.

Declaration
public Input<string> PublicIpv4Pool { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

Vpc

Boolean if the EIP is in a VPC or not.

Declaration
public Input<bool> Vpc { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.