Class: Aws::Evs::Types::DeleteEnvironmentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Evs::Types::DeleteEnvironmentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-evs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
<note markdown=“1”> This parameter is not used in Amazon EVS currently.
-
#environment_id ⇒ String
A unique ID associated with the environment to be deleted.
Instance Attribute Details
#client_token ⇒ String
<note markdown=“1”> This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect.
</note>
A unique, case-sensitive identifier that you provide to ensure the
idempotency of the environment deletion request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
450 451 452 453 454 455 |
# File 'lib/aws-sdk-evs/types.rb', line 450 class DeleteEnvironmentRequest < Struct.new( :client_token, :environment_id) SENSITIVE = [] include Aws::Structure end |
#environment_id ⇒ String
A unique ID associated with the environment to be deleted.
450 451 452 453 454 455 |
# File 'lib/aws-sdk-evs/types.rb', line 450 class DeleteEnvironmentRequest < Struct.new( :client_token, :environment_id) SENSITIVE = [] include Aws::Structure end |