Class: Aws::SSOAdmin::Types::CreateInstanceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::CreateInstanceRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssoadmin/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Specifies a unique, case-sensitive ID that you provide to ensure the idempotency of the request.
-
#name ⇒ String
The name of the instance of IAM Identity Center.
-
#tags ⇒ Array<Types::Tag>
Specifies tags to be attached to the instance of IAM Identity Center.
Instance Attribute Details
#client_token ⇒ String
Specifies a unique, case-sensitive ID that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a [UUID type of value].
If you don’t provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ‘ClientToken`, but with different parameters, the retry fails with an `IdempotentParameterMismatch` error.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
806 807 808 809 810 811 812 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 806 class CreateInstanceRequest < Struct.new( :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the instance of IAM Identity Center.
806 807 808 809 810 811 812 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 806 class CreateInstanceRequest < Struct.new( :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
Specifies tags to be attached to the instance of IAM Identity Center.
806 807 808 809 810 811 812 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 806 class CreateInstanceRequest < Struct.new( :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |