Class: Aws::SWF::Types::DomainInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DomainInfo
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Contains general information about a domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the domain.
-
#description ⇒ String
The description of the domain provided through RegisterDomain.
-
#name ⇒ String
The name of the domain.
-
#status ⇒ String
The status of the domain:.
Instance Attribute Details
#arn ⇒ String
The ARN of the domain.
1960 1961 1962 1963 1964 1965 1966 1967 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1960 class DomainInfo < Struct.new( :name, :status, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the domain provided through RegisterDomain.
1960 1961 1962 1963 1964 1965 1966 1967 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1960 class DomainInfo < Struct.new( :name, :status, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the domain. This name is unique within the account.
1960 1961 1962 1963 1964 1965 1966 1967 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1960 class DomainInfo < Struct.new( :name, :status, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the domain:
REGISTERED
– The domain is properly registered and available. You can use this domain for registering types and creating new workflow executions.DEPRECATED
– The domain was deprecated using DeprecateDomain, but is still in use. You should not create new workflow executions in this domain.
1960 1961 1962 1963 1964 1965 1966 1967 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1960 class DomainInfo < Struct.new( :name, :status, :description, :arn) SENSITIVE = [] include Aws::Structure end |