Class CfnAnalysisPropsMixin.StaticFileS3SourceOptionsProperty
The structure that contains the Amazon S3 location to download the static file from.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.StaticFileS3SourceOptionsProperty : CfnAnalysisPropsMixin.IStaticFileS3SourceOptionsProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.StaticFileS3SourceOptionsProperty Implements CfnAnalysisPropsMixin.IStaticFileS3SourceOptionsProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var staticFileS3SourceOptionsProperty = new StaticFileS3SourceOptionsProperty {
BucketName = "bucketName",
ObjectKey = "objectKey",
Region = "region"
};
Synopsis
Constructors
| StaticFileS3SourceOptionsProperty() | The structure that contains the Amazon S3 location to download the static file from. |
Properties
| BucketName | The name of the Amazon S3 bucket. |
| ObjectKey | The identifier of the static file in the Amazon S3 bucket. |
| Region | The Region of the Amazon S3 account that contains the bucket. |
Constructors
StaticFileS3SourceOptionsProperty()
The structure that contains the Amazon S3 location to download the static file from.
public StaticFileS3SourceOptionsProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var staticFileS3SourceOptionsProperty = new StaticFileS3SourceOptionsProperty {
BucketName = "bucketName",
ObjectKey = "objectKey",
Region = "region"
};
Properties
BucketName
The name of the Amazon S3 bucket.
public string? BucketName { get; set; }
Property Value
Remarks
ObjectKey
The identifier of the static file in the Amazon S3 bucket.
public string? ObjectKey { get; set; }
Property Value
Remarks
Region
The Region of the Amazon S3 account that contains the bucket.
public string? Region { get; set; }