Class CfnAnalysisPropsMixin.ImageStaticFileProperty
A static file that contains an image.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.ImageStaticFileProperty : CfnAnalysisPropsMixin.IImageStaticFileProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.ImageStaticFileProperty Implements CfnAnalysisPropsMixin.IImageStaticFileProperty
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.CfnPropertyMixins.AWS.QuickSight;
var imageStaticFileProperty = new ImageStaticFileProperty {
Source = new StaticFileSourceProperty {
S3Options = new StaticFileS3SourceOptionsProperty {
BucketName = "bucketName",
ObjectKey = "objectKey",
Region = "region"
},
UrlOptions = new StaticFileUrlSourceOptionsProperty {
Url = "url"
}
},
StaticFileId = "staticFileId"
};
Synopsis
Constructors
| ImageStaticFileProperty() | A static file that contains an image. |
Properties
| Source | The source of the image static file. |
| StaticFileId | The ID of the static file that contains an image. |
Constructors
ImageStaticFileProperty()
A static file that contains an image.
public ImageStaticFileProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var imageStaticFileProperty = new ImageStaticFileProperty {
Source = new StaticFileSourceProperty {
S3Options = new StaticFileS3SourceOptionsProperty {
BucketName = "bucketName",
ObjectKey = "objectKey",
Region = "region"
},
UrlOptions = new StaticFileUrlSourceOptionsProperty {
Url = "url"
}
},
StaticFileId = "staticFileId"
};
Properties
Source
The source of the image static file.
public object? Source { get; set; }
Property Value
Remarks
StaticFileId
The ID of the static file that contains an image.
public string? StaticFileId { get; set; }