Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.ImageStaticFileProperty

A static file that contains an image.

Inheritance
object
CfnAnalysisPropsMixin.ImageStaticFileProperty
Implements
CfnAnalysisPropsMixin.IImageStaticFileProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

object

Remarks

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IStaticFileSourceProperty

StaticFileId

The ID of the static file that contains an image.

public string? StaticFileId { get; set; }
Property Value

string

Remarks

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

Implements

CfnAnalysisPropsMixin.IImageStaticFileProperty
Back to top Generated by DocFX