Show / Hide Table of Contents

Interface CfnDashboard.IImageStaticFileProperty

A static file that contains an image.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDashboard.IImageStaticFileProperty
Syntax (vb)
Public Interface CfnDashboard.IImageStaticFileProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagestaticfile.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.QuickSight;

             var imageStaticFileProperty = new ImageStaticFileProperty {
                 StaticFileId = "staticFileId",

                 // the properties below are optional
                 Source = new StaticFileSourceProperty {
                     S3Options = new StaticFileS3SourceOptionsProperty {
                         BucketName = "bucketName",
                         ObjectKey = "objectKey",
                         Region = "region"
                     },
                     UrlOptions = new StaticFileUrlSourceOptionsProperty {
                         Url = "url"
                     }
                 }
             };

Synopsis

Properties

Source

The source of the image static file.

StaticFileId

The ID of the static file that contains an image.

Properties

Source

The source of the image static file.

object? Source { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagestaticfile.html#cfn-quicksight-dashboard-imagestaticfile-source

StaticFileId

The ID of the static file that contains an image.

string StaticFileId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-imagestaticfile.html#cfn-quicksight-dashboard-imagestaticfile-staticfileid

Back to top Generated by DocFX