Class: Aws::SWF::Types::DomainInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#arnString

The ARN of the domain.

Returns:

  • (String)


1977
1978
1979
1980
1981
1982
1983
1984
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1977

class DomainInfo < Struct.new(
  :name,
  :status,
  :description,
  :arn)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the domain provided through RegisterDomain.

Returns:

  • (String)


1977
1978
1979
1980
1981
1982
1983
1984
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1977

class DomainInfo < Struct.new(
  :name,
  :status,
  :description,
  :arn)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the domain. This name is unique within the account.

Returns:

  • (String)


1977
1978
1979
1980
1981
1982
1983
1984
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1977

class DomainInfo < Struct.new(
  :name,
  :status,
  :description,
  :arn)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

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.

Returns:

  • (String)


1977
1978
1979
1980
1981
1982
1983
1984
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 1977

class DomainInfo < Struct.new(
  :name,
  :status,
  :description,
  :arn)
  SENSITIVE = []
  include Aws::Structure
end