Class: Aws::SWF::Types::DeprecateDomainInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DeprecateDomainInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass DeprecateDomainInput data as a hash:
{
name: "DomainName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the domain to deprecate.
Instance Attribute Details
#name ⇒ String
The name of the domain to deprecate.
2037 2038 2039 2040 2041 |
# File 'lib/aws-sdk-swf/types.rb', line 2037 class DeprecateDomainInput < Struct.new( :name) SENSITIVE = [] include Aws::Structure end |