Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.StaticFileSourceProperty

The source of the static file.

Inheritance
object
CfnAnalysisPropsMixin.StaticFileSourceProperty
Implements
CfnAnalysisPropsMixin.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.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.StaticFileSourceProperty : CfnAnalysisPropsMixin.IStaticFileSourceProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.StaticFileSourceProperty Implements CfnAnalysisPropsMixin.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.Mixins.Preview.AWS.QuickSight.Mixins;

             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.Mixins.Preview.AWS.QuickSight.Mixins;

             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

Type union: either IResolvable or CfnAnalysisPropsMixin.IStaticFileS3SourceOptionsProperty

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IStaticFileUrlSourceOptionsProperty

Implements

CfnAnalysisPropsMixin.IStaticFileSourceProperty
Back to top Generated by DocFX