Class CfnAnalysis.StaticFileSourceProperty
The source of the static file.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.StaticFileSourceProperty : CfnAnalysis.IStaticFileSourcePropertySyntax (vb)
Public Class CfnAnalysis.StaticFileSourceProperty Implements CfnAnalysis.IStaticFileSourcePropertyRemarks
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.QuickSight;
             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.AWS.QuickSight;
             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; }