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 AWS 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.
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1211 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.
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1211 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.
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1211 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the domain.
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1211 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 AWS account that owns the domain. It does not include dashes or spaces.
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1211 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. The valid values are:
-
`Active`
-
`Deleted`
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 1211 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end |