Class: Aws::CodeArtifact::Types::DomainSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::DomainSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Information about a domain, including its name, Amazon Resource Name (ARN), and status. The [ListDomains] operation returns a list of `DomainSummary` objects.
[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListDomains.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the domain.
-
#created_time ⇒ Time
A timestamp that contains the date and time the domain was created.
-
#encryption_key ⇒ String
The key used to encrypt the domain.
-
#name ⇒ String
The name of the domain.
-
#owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain.
-
#status ⇒ String
A string that contains the status of the domain.
Instance Attribute Details
#arn ⇒ String
The ARN of the domain.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1157 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |
#created_time ⇒ Time
A timestamp that contains the date and time the domain was created.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1157 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |
#encryption_key ⇒ String
The key used to encrypt the domain.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1157 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the domain.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1157 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1157 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
A string that contains the status of the domain.
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1157 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |