CreateResolverEndpointRequest

public struct CreateResolverEndpointRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A unique string that identifies the request and that allows failed requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.

    Declaration

    Swift

    public let creatorRequestId: String
  • Specify the applicable value: INBOUND: Resolver forwards DNS queries to the DNS service for a VPC from your network OUTBOUND: Resolver forwards DNS queries from the DNS service for a VPC to your network

    Declaration

    Swift

    public let direction: ResolverEndpointDirection
  • The subnets and IP addresses in your VPC that DNS queries originate from (for outbound endpoints) or that you forward DNS queries to (for inbound endpoints). The subnet ID uniquely identifies a VPC.

    Declaration

    Swift

    public let ipAddresses: [IpAddressRequest]
  • A friendly name that lets you easily find a configuration in the Resolver dashboard in the Route 53 console.

    Declaration

    Swift

    public let name: String?
  • The ID of one or more security groups that you want to use to control access to this VPC. The security group that you specify must include one or more inbound rules (for inbound Resolver endpoints) or outbound rules (for outbound Resolver endpoints). Inbound and outbound rules must allow TCP and UDP access. For inbound access, open port 53. For outbound access, open the port that you’re using for DNS queries on your network.

    Declaration

    Swift

    public let securityGroupIds: [String]
  • A list of the tag keys and values that you want to associate with the endpoint.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(creatorRequestId: String, direction: ResolverEndpointDirection, ipAddresses: [IpAddressRequest], name: String? = nil, securityGroupIds: [String], tags: [Tag]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws