amazonka-imagebuilder-2.0: Amazon EC2 Image Builder SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ImageBuilder.Types.ImageSummary

Description

 
Synopsis

Documentation

data ImageSummary Source #

An image summary.

See: newImageSummary smart constructor.

Constructors

ImageSummary' 

Fields

Instances

Instances details
FromJSON ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

Generic ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

Associated Types

type Rep ImageSummary :: Type -> Type #

Read ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

Show ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

NFData ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

Methods

rnf :: ImageSummary -> () #

Eq ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

Hashable ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

type Rep ImageSummary Source # 
Instance details

Defined in Amazonka.ImageBuilder.Types.ImageSummary

type Rep ImageSummary = D1 ('MetaData "ImageSummary" "Amazonka.ImageBuilder.Types.ImageSummary" "amazonka-imagebuilder-2.0-BBLLjX59RW72O8VbQ3vKvH" 'False) (C1 ('MetaCons "ImageSummary'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "buildType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BuildType)) :*: S1 ('MetaSel ('Just "dateCreated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "osVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "outputResources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OutputResources))))) :*: ((S1 ('MetaSel ('Just "owner") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "platform") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Platform)) :*: S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ImageState)))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: (S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ImageType)) :*: S1 ('MetaSel ('Just "version") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newImageSummary :: ImageSummary Source #

Create a value of ImageSummary with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:arn:ImageSummary', imageSummary_arn - The Amazon Resource Name (ARN) of the image.

$sel:buildType:ImageSummary', imageSummary_buildType - Indicates the type of build that created this image. The build can be initiated in the following ways:

  • USER_INITIATED – A manual pipeline build request.
  • SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from EventBridge.
  • IMPORT – A VM import created the image to use as the base image for the recipe.

$sel:dateCreated:ImageSummary', imageSummary_dateCreated - The date on which this image was created.

$sel:name:ImageSummary', imageSummary_name - The name of the image.

$sel:osVersion:ImageSummary', imageSummary_osVersion - The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.

$sel:outputResources:ImageSummary', imageSummary_outputResources - The output resources produced when creating this image.

$sel:owner:ImageSummary', imageSummary_owner - The owner of the image.

$sel:platform:ImageSummary', imageSummary_platform - The platform of the image.

$sel:state:ImageSummary', imageSummary_state - The state of the image.

$sel:tags:ImageSummary', imageSummary_tags - The tags of the image.

$sel:type':ImageSummary', imageSummary_type - Specifies whether this is an AMI or container image.

$sel:version:ImageSummary', imageSummary_version - The version of the image.

imageSummary_arn :: Lens' ImageSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the image.

imageSummary_buildType :: Lens' ImageSummary (Maybe BuildType) Source #

Indicates the type of build that created this image. The build can be initiated in the following ways:

  • USER_INITIATED – A manual pipeline build request.
  • SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from EventBridge.
  • IMPORT – A VM import created the image to use as the base image for the recipe.

imageSummary_dateCreated :: Lens' ImageSummary (Maybe Text) Source #

The date on which this image was created.

imageSummary_osVersion :: Lens' ImageSummary (Maybe Text) Source #

The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.

imageSummary_outputResources :: Lens' ImageSummary (Maybe OutputResources) Source #

The output resources produced when creating this image.

imageSummary_owner :: Lens' ImageSummary (Maybe Text) Source #

The owner of the image.

imageSummary_type :: Lens' ImageSummary (Maybe ImageType) Source #

Specifies whether this is an AMI or container image.

imageSummary_version :: Lens' ImageSummary (Maybe Text) Source #

The version of the image.