Class CfnPlan.S3ReportOutputConfigurationProperty
Configuration for delivering generated reports to an Amazon S3 bucket.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ARCRegionSwitch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPlan.S3ReportOutputConfigurationProperty : CfnPlan.IS3ReportOutputConfigurationProperty
Syntax (vb)
Public Class CfnPlan.S3ReportOutputConfigurationProperty Implements CfnPlan.IS3ReportOutputConfigurationProperty
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.AWS.ARCRegionSwitch;
var s3ReportOutputConfigurationProperty = new S3ReportOutputConfigurationProperty {
BucketOwner = "bucketOwner",
BucketPath = "bucketPath"
};
Synopsis
Constructors
| S3ReportOutputConfigurationProperty() | Configuration for delivering generated reports to an Amazon S3 bucket. |
Properties
| BucketOwner | The AWS account ID that owns the S3 bucket. |
| BucketPath | The S3 bucket name and optional prefix where reports are stored. |
Constructors
S3ReportOutputConfigurationProperty()
Configuration for delivering generated reports to an Amazon S3 bucket.
public S3ReportOutputConfigurationProperty()
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.AWS.ARCRegionSwitch;
var s3ReportOutputConfigurationProperty = new S3ReportOutputConfigurationProperty {
BucketOwner = "bucketOwner",
BucketPath = "bucketPath"
};
Properties
BucketOwner
The AWS account ID that owns the S3 bucket.
public string? BucketOwner { get; set; }
Property Value
Remarks
Required to ensure the bucket is still owned by the same expected owner at generation time.
BucketPath
The S3 bucket name and optional prefix where reports are stored.
public string? BucketPath { get; set; }