Show / Hide Table of Contents

Class CfnAnalysis.StaticFileSourceProperty

The source of the static file.

Inheritance
object
CfnAnalysis.StaticFileSourceProperty
Implements
CfnAnalysis.IStaticFileSourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.StaticFileSourceProperty : CfnAnalysis.IStaticFileSourceProperty
Syntax (vb)
Public Class CfnAnalysis.StaticFileSourceProperty Implements CfnAnalysis.IStaticFileSourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfilesource.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 staticFileSourceProperty = new StaticFileSourceProperty {
                 S3Options = new StaticFileS3SourceOptionsProperty {
                     BucketName = "bucketName",
                     ObjectKey = "objectKey",
                     Region = "region"
                 },
                 UrlOptions = new StaticFileUrlSourceOptionsProperty {
                     Url = "url"
                 }
             };

Synopsis

Constructors

StaticFileSourceProperty()

The source of the static file.

Properties

S3Options

The structure that contains the Amazon S3 location to download the static file from.

UrlOptions

The structure that contains the URL to download the static file from.

Constructors

StaticFileSourceProperty()

The source of the static file.

public StaticFileSourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-staticfilesource.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 staticFileSourceProperty = new StaticFileSourceProperty {
                 S3Options = new StaticFileS3SourceOptionsProperty {
                     BucketName = "bucketName",
                     ObjectKey = "objectKey",
                     Region = "region"
                 },
                 UrlOptions = new StaticFileUrlSourceOptionsProperty {
                     Url = "url"
                 }
             };

Properties

S3Options

The structure that contains the Amazon S3 location to download the static file from.

public object? S3Options { get; set; }
Property Value

object

Remarks

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

UrlOptions

The structure that contains the URL to download the static file from.

public object? UrlOptions { get; set; }
Property Value

object

Remarks

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

Implements

CfnAnalysis.IStaticFileSourceProperty
Back to top Generated by DocFX