ModifyNetworkInterfaceAttributeRequest

public struct ModifyNetworkInterfaceAttributeRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Information about the interface attachment. If modifying the ‘delete on termination’ attribute, you must specify the ID of the interface attachment.

    Declaration

    Swift

    public let attachment: NetworkInterfaceAttachmentChanges?
  • A description for the network interface.

    Declaration

    Swift

    public let description: AttributeValue?
  • Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

    Declaration

    Swift

    public let dryRun: Bool?
  • Changes the security groups for the network interface. The new set of groups you specify replaces the current set. You must specify at least one group, even if it’s just the default security group in the VPC. You must specify the ID of the security group, not the name.

    Declaration

    Swift

    public let groups: [String]?
  • The ID of the network interface.

    Declaration

    Swift

    public let networkInterfaceId: String
  • Indicates whether source/destination checking is enabled. A value of true means checking is enabled, and false means checking is disabled. This value must be false for a NAT instance to perform NAT. For more information, see NAT Instances in the Amazon Virtual Private Cloud User Guide.

    Declaration

    Swift

    public let sourceDestCheck: AttributeBooleanValue?
  • Undocumented

    Declaration

    Swift

    public init(attachment: NetworkInterfaceAttachmentChanges? = nil, description: AttributeValue? = nil, dryRun: Bool? = nil, groups: [String]? = nil, networkInterfaceId: String, sourceDestCheck: AttributeBooleanValue? = nil)