Class: Aws::EC2::Types::CreateVpcEndpointServiceConfigurationRequest

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 CreateVpcEndpointServiceConfigurationRequest data as a hash:

{
  dry_run: false,
  acceptance_required: false,
  network_load_balancer_arns: ["String"], # required
  client_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#acceptance_requiredBoolean

Indicate whether requests from service consumers to create an endpoint to your service must be accepted. To accept a request, use AcceptVpcEndpointConnections.

Returns:

  • (Boolean)


7244
7245
7246
7247
7248
7249
7250
# File 'lib/aws-sdk-ec2/types.rb', line 7244

class CreateVpcEndpointServiceConfigurationRequest < Struct.new(
  :dry_run,
  :acceptance_required,
  :network_load_balancer_arns,
  :client_token)
  include Aws::Structure
end

#client_tokenString

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see [How to Ensure Idempotency].

[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html

Returns:

  • (String)


7244
7245
7246
7247
7248
7249
7250
# File 'lib/aws-sdk-ec2/types.rb', line 7244

class CreateVpcEndpointServiceConfigurationRequest < Struct.new(
  :dry_run,
  :acceptance_required,
  :network_load_balancer_arns,
  :client_token)
  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)


7244
7245
7246
7247
7248
7249
7250
# File 'lib/aws-sdk-ec2/types.rb', line 7244

class CreateVpcEndpointServiceConfigurationRequest < Struct.new(
  :dry_run,
  :acceptance_required,
  :network_load_balancer_arns,
  :client_token)
  include Aws::Structure
end

#network_load_balancer_arnsArray<String>

The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service.

Returns:

  • (Array<String>)


7244
7245
7246
7247
7248
7249
7250
# File 'lib/aws-sdk-ec2/types.rb', line 7244

class CreateVpcEndpointServiceConfigurationRequest < Struct.new(
  :dry_run,
  :acceptance_required,
  :network_load_balancer_arns,
  :client_token)
  include Aws::Structure
end