Class: Aws::EC2::Types::RevokeClientVpnIngressRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass RevokeClientVpnIngressRequest data as a hash:

{
  client_vpn_endpoint_id: "String", # required
  target_network_cidr: "String", # required
  access_group_id: "String",
  revoke_all_groups: false,
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#access_group_idString

The ID of the Active Directory group for which to revoke access.

Returns:

  • (String)


31423
31424
31425
31426
31427
31428
31429
31430
# File 'lib/aws-sdk-ec2/types.rb', line 31423

class RevokeClientVpnIngressRequest < Struct.new(
  :client_vpn_endpoint_id,
  :target_network_cidr,
  :access_group_id,
  :revoke_all_groups,
  :dry_run)
  include Aws::Structure
end

#client_vpn_endpoint_idString

The ID of the Client VPN endpoint with which the authorization rule is associated.

Returns:

  • (String)


31423
31424
31425
31426
31427
31428
31429
31430
# File 'lib/aws-sdk-ec2/types.rb', line 31423

class RevokeClientVpnIngressRequest < Struct.new(
  :client_vpn_endpoint_id,
  :target_network_cidr,
  :access_group_id,
  :revoke_all_groups,
  :dry_run)
  include Aws::Structure
end

#dry_runBoolean

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`.

Returns:

  • (Boolean)


31423
31424
31425
31426
31427
31428
31429
31430
# File 'lib/aws-sdk-ec2/types.rb', line 31423

class RevokeClientVpnIngressRequest < Struct.new(
  :client_vpn_endpoint_id,
  :target_network_cidr,
  :access_group_id,
  :revoke_all_groups,
  :dry_run)
  include Aws::Structure
end

#revoke_all_groupsBoolean

Indicates whether access should be revoked for all clients.

Returns:

  • (Boolean)


31423
31424
31425
31426
31427
31428
31429
31430
# File 'lib/aws-sdk-ec2/types.rb', line 31423

class RevokeClientVpnIngressRequest < Struct.new(
  :client_vpn_endpoint_id,
  :target_network_cidr,
  :access_group_id,
  :revoke_all_groups,
  :dry_run)
  include Aws::Structure
end

#target_network_cidrString

The IPv4 address range, in CIDR notation, of the network for which access is being removed.

Returns:

  • (String)


31423
31424
31425
31426
31427
31428
31429
31430
# File 'lib/aws-sdk-ec2/types.rb', line 31423

class RevokeClientVpnIngressRequest < Struct.new(
  :client_vpn_endpoint_id,
  :target_network_cidr,
  :access_group_id,
  :revoke_all_groups,
  :dry_run)
  include Aws::Structure
end