AWSEC2AuthorizeClientVpnIngressRequest

Objective-C

@interface AWSEC2AuthorizeClientVpnIngressRequest

Swift

class AWSEC2AuthorizeClientVpnIngressRequest
  • The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group. Required if AuthorizeAllGroups is false or not specified.

    Declaration

    Objective-C

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

    Swift

    var accessGroupId: String? { get set }
  • Indicates whether to grant access to all clients. Specify true to grant all clients who successfully establish a VPN connection access to the network. Must be set to true if AccessGroupId is not specified.

    Declaration

    Objective-C

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

    Swift

    var authorizeAllGroups: NSNumber? { get set }
  • Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

    Declaration

    Objective-C

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

    Swift

    var clientToken: String? { get set }
  • The ID of the Client VPN endpoint.

    Declaration

    Objective-C

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

    Swift

    var clientVpnEndpointId: String? { get set }
  • A brief description of the authorization rule.

    Declaration

    Objective-C

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

    Swift

    var detail: 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 }
  • The IPv4 address range, in CIDR notation, of the network for which access is being authorized.

    Declaration

    Objective-C

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

    Swift

    var targetNetworkCidr: String? { get set }