Show / Hide Table of Contents

Interface CfnReportGroupPropsMixin.IReportExportConfigProperty

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

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeBuild
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnReportGroupPropsMixin.IReportExportConfigProperty
Syntax (vb)
Public Interface CfnReportGroupPropsMixin.IReportExportConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.CodeBuild;

             var reportExportConfigProperty = new ReportExportConfigProperty {
                 ExportConfigType = "exportConfigType",
                 S3Destination = new S3ReportExportConfigProperty {
                     Bucket = "bucket",
                     BucketOwner = "bucketOwner",
                     EncryptionDisabled = false,
                     EncryptionKey = "encryptionKey",
                     Packaging = "packaging",
                     Path = "path"
                 }
             };

Synopsis

Properties

ExportConfigType

The export configuration type. Valid values are:.

S3Destination

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

Properties

ExportConfigType

The export configuration type. Valid values are:.

string? ExportConfigType { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-exportconfigtype

    S3Destination

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

    object? S3Destination { get; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html#cfn-codebuild-reportgroup-reportexportconfig-s3destination

    Type union: either IResolvable or CfnReportGroupPropsMixin.IS3ReportExportConfigProperty

    Back to top Generated by DocFX