Class: Aws::DynamoDB::Types::DeleteReplicaAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::DeleteReplicaAction
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Note:
When making an API call, you may pass DeleteReplicaAction data as a hash:
{
region_name: "RegionName", # required
}
Represents a replica to be removed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#region_name ⇒ String
The Region of the replica to be removed.
Instance Attribute Details
#region_name ⇒ String
The Region of the replica to be removed.
2759 2760 2761 2762 2763 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2759 class DeleteReplicaAction < Struct.new( :region_name) SENSITIVE = [] include Aws::Structure end |