Show / Hide Table of Contents

Class CfnPlan.S3ReportOutputConfigurationProperty

Configuration for delivering generated reports to an Amazon S3 bucket.

Inheritance
object
CfnPlan.S3ReportOutputConfigurationProperty
Implements
CfnPlan.IS3ReportOutputConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.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.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

string

Remarks

Required to ensure the bucket is still owned by the same expected owner at generation time.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html#cfn-arcregionswitch-plan-s3reportoutputconfiguration-bucketowner

BucketPath

The S3 bucket name and optional prefix where reports are stored.

public string? BucketPath { get; set; }
Property Value

string

Remarks

Format: bucket-name or bucket-name/prefix.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html#cfn-arcregionswitch-plan-s3reportoutputconfiguration-bucketpath

Implements

CfnPlan.IS3ReportOutputConfigurationProperty
Back to top Generated by DocFX