amazonka-codebuild-2.0: Amazon CodeBuild 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.CodeBuild.Types.ReportExportConfig

Description

 
Synopsis

Documentation

data ReportExportConfig Source #

Information about the location where the run of a report is exported.

See: newReportExportConfig smart constructor.

Constructors

ReportExportConfig' 

Fields

Instances

Instances details
FromJSON ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

ToJSON ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

Generic ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

Associated Types

type Rep ReportExportConfig :: Type -> Type #

Read ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

Show ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

NFData ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

Methods

rnf :: ReportExportConfig -> () #

Eq ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

Hashable ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

type Rep ReportExportConfig Source # 
Instance details

Defined in Amazonka.CodeBuild.Types.ReportExportConfig

type Rep ReportExportConfig = D1 ('MetaData "ReportExportConfig" "Amazonka.CodeBuild.Types.ReportExportConfig" "amazonka-codebuild-2.0-3KpZspRk9Ul8Wu4D0cM13Q" 'False) (C1 ('MetaCons "ReportExportConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "exportConfigType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ReportExportConfigType)) :*: S1 ('MetaSel ('Just "s3Destination") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3ReportExportConfig))))

newReportExportConfig :: ReportExportConfig Source #

Create a value of ReportExportConfig 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:exportConfigType:ReportExportConfig', reportExportConfig_exportConfigType - The export configuration type. Valid values are:

  • S3: The report results are exported to an S3 bucket.
  • NO_EXPORT: The report results are not exported.

$sel:s3Destination:ReportExportConfig', reportExportConfig_s3Destination - A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

reportExportConfig_exportConfigType :: Lens' ReportExportConfig (Maybe ReportExportConfigType) Source #

The export configuration type. Valid values are:

  • S3: The report results are exported to an S3 bucket.
  • NO_EXPORT: The report results are not exported.

reportExportConfig_s3Destination :: Lens' ReportExportConfig (Maybe S3ReportExportConfig) Source #

A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.