Get Component
imagebuilder_get_component | R Documentation |
Gets a component object¶
Description¶
Gets a component object.
Usage¶
Arguments¶
componentBuildVersionArn
[required] The Amazon Resource Name (ARN) of the component that you want to get. Regex requires the suffix
/\\d+$
.
Value¶
A list with the following syntax:
list(
requestId = "string",
component = list(
arn = "string",
name = "string",
version = "string",
description = "string",
changeDescription = "string",
type = "BUILD"|"TEST",
platform = "Windows"|"Linux",
supportedOsVersions = list(
"string"
),
state = list(
status = "DEPRECATED",
reason = "string"
),
parameters = list(
list(
name = "string",
type = "string",
defaultValue = list(
"string"
),
description = "string"
)
),
owner = "string",
data = "string",
kmsKeyId = "string",
encrypted = TRUE|FALSE,
dateCreated = "string",
tags = list(
"string"
),
publisher = "string",
obfuscate = TRUE|FALSE
)
)