Show / Hide Table of Contents

Class EipAssociationArgs

Inheritance
System.Object
InputArgs
ResourceArgs
EipAssociationArgs
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 EipAssociationArgs : ResourceArgs

Constructors

View Source

EipAssociationArgs()

Declaration
public EipAssociationArgs()

Properties

View Source

AllocationId

The allocation ID. This is required for EC2-VPC.

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

AllowReassociation

Whether to allow an Elastic IP to be re-associated. Defaults to true in VPC.

Declaration
public Input<bool> AllowReassociation { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

InstanceId

The ID of the instance. This is required for EC2-Classic. For EC2-VPC, you can specify either the instance ID or the network interface ID, but not both. The operation fails if you specify an instance ID unless exactly one network interface is attached.

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

NetworkInterfaceId

The ID of the network interface. If the instance has more than one network interface, you must specify a network interface ID.

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

PrivateIpAddress

The 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> PrivateIpAddress { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PublicIp

The Elastic IP address. This is required for EC2-Classic.

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