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
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 |
Properties
ExportConfigType
The export configuration type. Valid values are:.
string? ExportConfigType { get; }
Property Value
Remarks
S3Destination
A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.
object? S3Destination { get; }