CreateVpcEndpointServiceConfigurationRequest

public struct CreateVpcEndpointServiceConfigurationRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To accept a request, use AcceptVpcEndpointConnections.

    Declaration

    Swift

    public let acceptanceRequired: Bool?
  • Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

    Declaration

    Swift

    public let clientToken: String?
  • 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?
  • The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service.

    Declaration

    Swift

    public let networkLoadBalancerArns: [String]
  • The private DNS name to assign to the VPC endpoint service.

    Declaration

    Swift

    public let privateDnsName: String?
  • The tags to associate with the service.

    Declaration

    Swift

    public let tagSpecifications: [TagSpecification]?
  • Undocumented

    Declaration

    Swift

    public init(acceptanceRequired: Bool? = nil, clientToken: String? = nil, dryRun: Bool? = nil, networkLoadBalancerArns: [String], privateDnsName: String? = nil, tagSpecifications: [TagSpecification]? = nil)