Class: Aws::SSMIncidents::Types::UpdateDeletionProtectionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::UpdateDeletionProtectionInput
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Note:
When making an API call, you may pass UpdateDeletionProtectionInput data as a hash:
{
arn: "Arn", # required
client_token: "ClientToken",
deletion_protected: false, # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the replication set you're updating.
-
#client_token ⇒ String
A token ensuring that the operation is called only once with the specified details.
-
#deletion_protected ⇒ Boolean
Details if deletion protection is enabled or disabled in your account.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the replication set you're updating.
2270 2271 2272 2273 2274 2275 2276 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 2270 class UpdateDeletionProtectionInput < Struct.new( :arn, :client_token, :deletion_protected) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A token ensuring that the operation is called only once with the specified details.
A suitable default value is auto-generated. You should normally not need to pass this option.
2270 2271 2272 2273 2274 2275 2276 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 2270 class UpdateDeletionProtectionInput < Struct.new( :arn, :client_token, :deletion_protected) SENSITIVE = [] include Aws::Structure end |
#deletion_protected ⇒ Boolean
Details if deletion protection is enabled or disabled in your account.
2270 2271 2272 2273 2274 2275 2276 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 2270 class UpdateDeletionProtectionInput < Struct.new( :arn, :client_token, :deletion_protected) SENSITIVE = [] include Aws::Structure end |