Class: Aws::Imagebuilder::Types::EcrConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-imagebuilder/types.rb

Overview

Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_tagsArray<String>

Tags for Image Builder to apply to the output container image that &amp;INS; scans. Tags can help you identify and manage your scanned images.

Returns:

  • (Array<String>)


2469
2470
2471
2472
2473
2474
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2469

class EcrConfiguration < Struct.new(
  :repository_name,
  :container_tags)
  SENSITIVE = []
  include Aws::Structure
end

#repository_nameString

The name of the container repository that Amazon Inspector scans to identify findings for your container images. The name includes the path for the repository location. If you don’t provide this information, Image Builder creates a repository in your account named ‘image-builder-image-scanning-repository` for vulnerability scans of your output container images.

Returns:

  • (String)


2469
2470
2471
2472
2473
2474
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2469

class EcrConfiguration < Struct.new(
  :repository_name,
  :container_tags)
  SENSITIVE = []
  include Aws::Structure
end