Show / Hide Table of Contents

Interface CfnAnalysis.ISpatialStaticFileProperty

A static file that contains the geospatial data.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-spatialstaticfile.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 spatialStaticFileProperty = new SpatialStaticFileProperty {
                 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 spatial static file.

StaticFileId

The ID of the spatial static file.

Properties

Source

The source of the spatial static file.

object? Source { get; }
Property Value

object

Remarks

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

StaticFileId

The ID of the spatial static file.

string StaticFileId { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX