Class: Aws::S3Outposts::Types::CreateEndpointRequest

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

Overview

Note:

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

{
  outpost_id: "OutpostId", # required
  subnet_id: "SubnetId", # required
  security_group_id: "SecurityGroupId", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#outpost_idString

The ID of the AWS Outpost.

Returns:

  • (String)


62
63
64
65
66
67
68
# File 'lib/aws-sdk-s3outposts/types.rb', line 62

class CreateEndpointRequest < Struct.new(
  :outpost_id,
  :subnet_id,
  :security_group_id)
  SENSITIVE = []
  include Aws::Structure
end

#security_group_idString

The ID of the security group to use with the endpoint.

Returns:

  • (String)


62
63
64
65
66
67
68
# File 'lib/aws-sdk-s3outposts/types.rb', line 62

class CreateEndpointRequest < Struct.new(
  :outpost_id,
  :subnet_id,
  :security_group_id)
  SENSITIVE = []
  include Aws::Structure
end

#subnet_idString

The ID of the subnet in the selected VPC.

Returns:

  • (String)


62
63
64
65
66
67
68
# File 'lib/aws-sdk-s3outposts/types.rb', line 62

class CreateEndpointRequest < Struct.new(
  :outpost_id,
  :subnet_id,
  :security_group_id)
  SENSITIVE = []
  include Aws::Structure
end