Class CfnAnalysisPropsMixin.StaticFileSourceProperty
The source of the static file.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.StaticFileSourceProperty : CfnAnalysisPropsMixin.IStaticFileSourceProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.StaticFileSourceProperty Implements CfnAnalysisPropsMixin.IStaticFileSourceProperty
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 staticFileSourceProperty = new StaticFileSourceProperty {
S3Options = new StaticFileS3SourceOptionsProperty {
BucketName = "bucketName",
ObjectKey = "objectKey",
Region = "region"
},
UrlOptions = new StaticFileUrlSourceOptionsProperty {
Url = "url"
}
};
Synopsis
Constructors
| StaticFileSourceProperty() | The source of the static file. |
Properties
| S3Options | The structure that contains the Amazon S3 location to download the static file from. |
| UrlOptions | The structure that contains the URL to download the static file from. |
Constructors
StaticFileSourceProperty()
The source of the static file.
public StaticFileSourceProperty()
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 staticFileSourceProperty = new StaticFileSourceProperty {
S3Options = new StaticFileS3SourceOptionsProperty {
BucketName = "bucketName",
ObjectKey = "objectKey",
Region = "region"
},
UrlOptions = new StaticFileUrlSourceOptionsProperty {
Url = "url"
}
};
Properties
S3Options
The structure that contains the Amazon S3 location to download the static file from.
public object? S3Options { get; set; }
Property Value
Remarks
UrlOptions
The structure that contains the URL to download the static file from.
public object? UrlOptions { get; set; }