AWSEC2CreateVerifiedAccessEndpointRequest

Objective-C

@interface AWSEC2CreateVerifiedAccessEndpointRequest

Swift

class AWSEC2CreateVerifiedAccessEndpointRequest
  • The DNS name for users to reach your application.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable applicationDomain;

    Swift

    var applicationDomain: String? { get set }
  • The type of attachment.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2VerifiedAccessEndpointAttachmentType attachmentType;

    Swift

    var attachmentType: AWSEC2VerifiedAccessEndpointAttachmentType { get set }
  • A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable clientToken;

    Swift

    var clientToken: String? { get set }
  • A description for the Verified Access endpoint.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable detail;

    Swift

    var detail: String? { get set }
  • The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable domainCertificateArn;

    Swift

    var domainCertificateArn: String? { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable dryRun;

    Swift

    var dryRun: NSNumber? { get set }
  • A custom identifier that is prepended to the DNS name that is generated for the endpoint.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable endpointDomainPrefix;

    Swift

    var endpointDomainPrefix: String? { get set }
  • The type of Verified Access endpoint to create.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2VerifiedAccessEndpointType endpointType;

    Swift

    var endpointType: AWSEC2VerifiedAccessEndpointType { get set }
  • The load balancer details. This parameter is required if the endpoint type is load-balancer.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSEC2CreateVerifiedAccessEndpointLoadBalancerOptions *_Nullable loadBalancerOptions;

    Swift

    var loadBalancerOptions: AWSEC2CreateVerifiedAccessEndpointLoadBalancerOptions? { get set }
  • The network interface details. This parameter is required if the endpoint type is network-interface.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSEC2CreateVerifiedAccessEndpointEniOptions *_Nullable networkInterfaceOptions;

    Swift

    var networkInterfaceOptions: AWSEC2CreateVerifiedAccessEndpointEniOptions? { get set }
  • The Verified Access policy document.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable policyDocument;

    Swift

    var policyDocument: String? { get set }
  • The IDs of the security groups to associate with the Verified Access endpoint. Required if AttachmentType is set to vpc.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable securityGroupIds;

    Swift

    var securityGroupIds: [String]? { get set }
  • The options for server side encryption.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSEC2VerifiedAccessSseSpecificationRequest *_Nullable sseSpecification;

    Swift

    var sseSpecification: AWSEC2VerifiedAccessSseSpecificationRequest? { get set }
  • The tags to assign to the Verified Access endpoint.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2TagSpecification *> *_Nullable tagSpecifications;

    Swift

    var tagSpecifications: [AWSEC2TagSpecification]? { get set }
  • The ID of the Verified Access group to associate the endpoint with.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable verifiedAccessGroupId;

    Swift

    var verifiedAccessGroupId: String? { get set }