ComponentAttributes

class aws_cdk.aws_imagebuilder_alpha.ComponentAttributes(*, component_arn=None, component_name=None, component_version=None)

Bases: object

(experimental) Properties for an EC2 Image Builder component.

Parameters:
  • component_arn (Optional[str]) – (experimental) The ARN of the component. Default: - the ARN is automatically constructed if a componentName is provided, otherwise a componentArn is required

  • component_name (Optional[str]) – (experimental) The name of the component. Default: - the name is automatically constructed if a componentArn is provided, otherwise a componentName is required

  • component_version (Optional[str]) – (experimental) The version of the component. Default: - the latest version of the component, x.x.x

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_imagebuilder_alpha as imagebuilder_alpha

component_attributes = imagebuilder_alpha.ComponentAttributes(
    component_arn="componentArn",
    component_name="componentName",
    component_version="componentVersion"
)

Attributes

component_arn

(experimental) The ARN of the component.

Default:

  • the ARN is automatically constructed if a componentName is provided, otherwise a componentArn is

required

Stability:

experimental

component_name

(experimental) The name of the component.

Default:

  • the name is automatically constructed if a componentArn is provided, otherwise a componentName is

required

Stability:

experimental

component_version

(experimental) The version of the component.

Default:
  • the latest version of the component, x.x.x

Stability:

experimental