AuthorizeClientVpnIngressRequest

public struct AuthorizeClientVpnIngressRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • 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

    Swift

    public let accessGroupId: String?
  • 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

    Swift

    public let authorizeAllGroups: 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?
  • The ID of the Client VPN endpoint.

    Declaration

    Swift

    public let clientVpnEndpointId: String
  • A brief description of the authorization rule.

    Declaration

    Swift

    public let description: 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 IPv4 address range, in CIDR notation, of the network for which access is being authorized.

    Declaration

    Swift

    public let targetNetworkCidr: String
  • Undocumented

    Declaration

    Swift

    public init(accessGroupId: String? = nil, authorizeAllGroups: Bool? = nil, clientToken: String? = AuthorizeClientVpnIngressRequest.idempotencyToken(), clientVpnEndpointId: String, description: String? = nil, dryRun: Bool? = nil, targetNetworkCidr: String)