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.GetModelManifest

Description

Retrieves information about a vehicle model (model manifest).

Synopsis

Creating a Request

data GetModelManifest Source #

See: newGetModelManifest smart constructor.

Constructors

GetModelManifest' 

Fields

  • name :: Text

    The name of the vehicle model to retrieve information about.

Instances

Instances details
ToJSON GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

ToHeaders GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

ToPath GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

ToQuery GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

AWSRequest GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Associated Types

type AWSResponse GetModelManifest #

Generic GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Associated Types

type Rep GetModelManifest :: Type -> Type #

Read GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Show GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

NFData GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Methods

rnf :: GetModelManifest -> () #

Eq GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Hashable GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

type AWSResponse GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

type Rep GetModelManifest Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

type Rep GetModelManifest = D1 ('MetaData "GetModelManifest" "Amazonka.IoTFleetWise.GetModelManifest" "amazonka-iotfleetwise-2.0-3noXdw9CznA79cw3EwaHcU" 'False) (C1 ('MetaCons "GetModelManifest'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetModelManifest Source #

Create a value of GetModelManifest 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:

GetModelManifest, getModelManifest_name - The name of the vehicle model to retrieve information about.

Request Lenses

getModelManifest_name :: Lens' GetModelManifest Text Source #

The name of the vehicle model to retrieve information about.

Destructuring the Response

data GetModelManifestResponse Source #

See: newGetModelManifestResponse smart constructor.

Constructors

GetModelManifestResponse' 

Fields

Instances

Instances details
Generic GetModelManifestResponse Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Associated Types

type Rep GetModelManifestResponse :: Type -> Type #

Read GetModelManifestResponse Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Show GetModelManifestResponse Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

NFData GetModelManifestResponse Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

Eq GetModelManifestResponse Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

type Rep GetModelManifestResponse Source # 
Instance details

Defined in Amazonka.IoTFleetWise.GetModelManifest

type Rep GetModelManifestResponse = D1 ('MetaData "GetModelManifestResponse" "Amazonka.IoTFleetWise.GetModelManifest" "amazonka-iotfleetwise-2.0-3noXdw9CznA79cw3EwaHcU" 'False) (C1 ('MetaCons "GetModelManifestResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "description") '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 "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))) :*: ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastModificationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)))))

newGetModelManifestResponse Source #

Create a value of GetModelManifestResponse 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:

GetModelManifestResponse, getModelManifestResponse_description - A brief description of the vehicle model.

GetModelManifestResponse, getModelManifestResponse_signalCatalogArn - The ARN of the signal catalog associated with the vehicle model.

GetModelManifestResponse, getModelManifestResponse_status - The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. You can edit the vehicle model if the status is marked DRAFT.

$sel:httpStatus:GetModelManifestResponse', getModelManifestResponse_httpStatus - The response's http status code.

GetModelManifest, getModelManifestResponse_name - The name of the vehicle model.

GetModelManifestResponse, getModelManifestResponse_arn - The Amazon Resource Name (ARN) of the vehicle model.

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

GetModelManifestResponse, getModelManifestResponse_lastModificationTime - The last time the vehicle model was modified.

Response Lenses

getModelManifestResponse_signalCatalogArn :: Lens' GetModelManifestResponse (Maybe Text) Source #

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

getModelManifestResponse_status :: Lens' GetModelManifestResponse (Maybe ManifestStatus) Source #

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

getModelManifestResponse_arn :: Lens' GetModelManifestResponse Text Source #

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

getModelManifestResponse_creationTime :: Lens' GetModelManifestResponse UTCTime Source #

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