Describe Domain
codeartifact_describe_domain | R Documentation |
Returns a DomainDescription object that contains information about the requested domain¶
Description¶
Returns a DomainDescription object that contains information about the requested domain.
Usage¶
codeartifact_describe_domain(domain, domainOwner)
Arguments¶
domain |
[required] A string that specifies the name of the requested domain. |
domainOwner |
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces. |
Value¶
A list with the following syntax:
list(
domain = list(
name = "string",
owner = "string",
arn = "string",
status = "Active"|"Deleted",
createdTime = as.POSIXct(
"2015-01-01"
),
encryptionKey = "string",
repositoryCount = 123,
assetSizeBytes = 123,
s3BucketArn = "string"
)
)
Request syntax¶
svc$describe_domain(
domain = "string",
domainOwner = "string"
)