Interface CfnPlan.S3ReportOutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlan.S3ReportOutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnPlan
@Stability(Stable)
public static interface CfnPlan.S3ReportOutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for delivering generated reports to an Amazon S3 bucket.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.arcregionswitch.*;
S3ReportOutputConfigurationProperty s3ReportOutputConfigurationProperty = S3ReportOutputConfigurationProperty.builder()
.bucketOwner("bucketOwner")
.bucketPath("bucketPath")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlan.S3ReportOutputConfigurationPropertystatic final classAn implementation forCfnPlan.S3ReportOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketOwner
The AWS account ID that owns the S3 bucket.Required to ensure the bucket is still owned by the same expected owner at generation time.
- See Also:
-
getBucketPath
The S3 bucket name and optional prefix where reports are stored.Format: bucket-name or bucket-name/prefix.
- See Also:
-
builder
-