amazonka-iotfleetwise-2.0: Amazon IoT FleetWise 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.IoTFleetWise.Types.ModelManifestSummary

Description

 
Synopsis

Documentation

data ModelManifestSummary Source #

Information about a vehicle model (model manifest). You can use the API operation to return this information about multiple vehicle models.

See: newModelManifestSummary smart constructor.

Constructors

ModelManifestSummary' 

Fields

  • arn :: Maybe Text

    The Amazon Resource Name (ARN) of the vehicle model.

  • description :: Maybe Text

    A brief description of the vehicle model.

  • name :: Maybe Text

    The name of the vehicle model.

  • signalCatalogArn :: Maybe Text

    The ARN of the signal catalog associated with the vehicle model.

  • status :: Maybe ManifestStatus

    The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model.

  • creationTime :: POSIX

    The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).

  • lastModificationTime :: POSIX

    The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).

Instances

Instances details
FromJSON ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

Generic ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

Associated Types

type Rep ModelManifestSummary :: Type -> Type #

Read ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

Show ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

NFData ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

Methods

rnf :: ModelManifestSummary -> () #

Eq ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

Hashable ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

type Rep ModelManifestSummary Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.ModelManifestSummary

type Rep ModelManifestSummary = D1 ('MetaData "ModelManifestSummary" "Amazonka.IoTFleetWise.Types.ModelManifestSummary" "amazonka-iotfleetwise-2.0-3noXdw9CznA79cw3EwaHcU" 'False) (C1 ('MetaCons "ModelManifestSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "signalCatalogArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ManifestStatus))) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastModificationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)))))

newModelManifestSummary Source #

Create a value of ModelManifestSummary 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:ModelManifestSummary', modelManifestSummary_arn - The Amazon Resource Name (ARN) of the vehicle model.

$sel:description:ModelManifestSummary', modelManifestSummary_description - A brief description of the vehicle model.

$sel:name:ModelManifestSummary', modelManifestSummary_name - The name of the vehicle model.

$sel:signalCatalogArn:ModelManifestSummary', modelManifestSummary_signalCatalogArn - The ARN of the signal catalog associated with the vehicle model.

$sel:status:ModelManifestSummary', modelManifestSummary_status - The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model.

$sel:creationTime:ModelManifestSummary', modelManifestSummary_creationTime - The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).

$sel:lastModificationTime:ModelManifestSummary', modelManifestSummary_lastModificationTime - The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).

modelManifestSummary_arn :: Lens' ModelManifestSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the vehicle model.

modelManifestSummary_description :: Lens' ModelManifestSummary (Maybe Text) Source #

A brief description of the vehicle model.

modelManifestSummary_signalCatalogArn :: Lens' ModelManifestSummary (Maybe Text) Source #

The ARN of the signal catalog associated with the vehicle model.

modelManifestSummary_status :: Lens' ModelManifestSummary (Maybe ManifestStatus) Source #

The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model.

modelManifestSummary_creationTime :: Lens' ModelManifestSummary UTCTime Source #

The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).

modelManifestSummary_lastModificationTime :: Lens' ModelManifestSummary UTCTime Source #

The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).