Class: Aws::WorkSpacesThinClient::Types::DeleteEnvironmentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesThinClient::Types::DeleteEnvironmentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workspacesthinclient/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#id ⇒ String
The ID of the environment to delete.
Instance Attribute Details
#client_token ⇒ String
Specifies a unique, case-sensitive identifier 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.
219 220 221 222 223 224 |
# File 'lib/aws-sdk-workspacesthinclient/types.rb', line 219 class DeleteEnvironmentRequest < Struct.new( :id, :client_token) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the environment to delete.
219 220 221 222 223 224 |
# File 'lib/aws-sdk-workspacesthinclient/types.rb', line 219 class DeleteEnvironmentRequest < Struct.new( :id, :client_token) SENSITIVE = [] include Aws::Structure end |