Class: Aws::VPCLattice::Types::CreateServiceNetworkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::CreateServiceNetworkRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-vpclattice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auth_type ⇒ String
The type of IAM policy.
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#name ⇒ String
The name of the service network.
-
#tags ⇒ Hash<String,String>
The tags for the service network.
Instance Attribute Details
#auth_type ⇒ String
The type of IAM policy.
-
‘NONE`: The resource does not use an IAM policy. This is the default.
-
‘AWS_IAM`: The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 438 class CreateServiceNetworkRequest < Struct.new( :auth_type, :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token and parameters, the retry succeeds without performing any actions. If the parameters aren’t identical, the retry fails.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 438 class CreateServiceNetworkRequest < Struct.new( :auth_type, :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the service network. The name must be unique to the account. The valid characters are a-z, 0-9, and hyphens (-). You can’t use a hyphen as the first or last character, or immediately after another hyphen.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 438 class CreateServiceNetworkRequest < Struct.new( :auth_type, :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags for the service network.
438 439 440 441 442 443 444 445 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 438 class CreateServiceNetworkRequest < Struct.new( :auth_type, :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |