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