libZSservicesZSamazonka-compute-optimizerZSamazonka-compute-optimizer
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.ComputeOptimizer.Types.S3Destination

Description

 
Synopsis

Documentation

data S3Destination Source #

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.

See: newS3Destination smart constructor.

Constructors

S3Destination' 

Fields

  • bucket :: Maybe Text

    The name of the Amazon S3 bucket used as the destination of an export file.

  • key :: Maybe Text

    The Amazon S3 bucket key of an export file.

    The key uniquely identifies the object, or export file, in the S3 bucket.

  • metadataKey :: Maybe Text

    The Amazon S3 bucket key of a metadata file.

    The key uniquely identifies the object, or metadata file, in the S3 bucket.

Instances

Instances details
Eq S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

Read S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

Show S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

Generic S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

Associated Types

type Rep S3Destination :: Type -> Type #

NFData S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

Methods

rnf :: S3Destination -> () #

Hashable S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

FromJSON S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

type Rep S3Destination Source # 
Instance details

Defined in Amazonka.ComputeOptimizer.Types.S3Destination

type Rep S3Destination = D1 ('MetaData "S3Destination" "Amazonka.ComputeOptimizer.Types.S3Destination" "libZSservicesZSamazonka-compute-optimizerZSamazonka-compute-optimizer" 'False) (C1 ('MetaCons "S3Destination'" 'PrefixI 'True) (S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "metadataKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newS3Destination :: S3Destination Source #

Create a value of S3Destination 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:bucket:S3Destination', s3Destination_bucket - The name of the Amazon S3 bucket used as the destination of an export file.

$sel:key:S3Destination', s3Destination_key - The Amazon S3 bucket key of an export file.

The key uniquely identifies the object, or export file, in the S3 bucket.

$sel:metadataKey:S3Destination', s3Destination_metadataKey - The Amazon S3 bucket key of a metadata file.

The key uniquely identifies the object, or metadata file, in the S3 bucket.

s3Destination_bucket :: Lens' S3Destination (Maybe Text) Source #

The name of the Amazon S3 bucket used as the destination of an export file.

s3Destination_key :: Lens' S3Destination (Maybe Text) Source #

The Amazon S3 bucket key of an export file.

The key uniquely identifies the object, or export file, in the S3 bucket.

s3Destination_metadataKey :: Lens' S3Destination (Maybe Text) Source #

The Amazon S3 bucket key of a metadata file.

The key uniquely identifies the object, or metadata file, in the S3 bucket.