Show / Hide Table of Contents

Class CfnTemplate.GradientColorProperty

Determines the gradient color settings.

Inheritance
object
CfnTemplate.GradientColorProperty
Implements
CfnTemplate.IGradientColorProperty
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 CfnTemplate.GradientColorProperty : CfnTemplate.IGradientColorProperty
Syntax (vb)
Public Class CfnTemplate.GradientColorProperty Implements CfnTemplate.IGradientColorProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gradientcolor.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 gradientColorProperty = new GradientColorProperty {
                 Stops = new [] { new GradientStopProperty {
                     GradientOffset = 123,

                     // the properties below are optional
                     Color = "color",
                     DataValue = 123
                 } }
             };

Synopsis

Constructors

GradientColorProperty()

Determines the gradient color settings.

Properties

Stops

The list of gradient color stops.

Constructors

GradientColorProperty()

Determines the gradient color settings.

public GradientColorProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gradientcolor.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 gradientColorProperty = new GradientColorProperty {
                 Stops = new [] { new GradientStopProperty {
                     GradientOffset = 123,

                     // the properties below are optional
                     Color = "color",
                     DataValue = 123
                 } }
             };

Properties

Stops

The list of gradient color stops.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-gradientcolor.html#cfn-quicksight-template-gradientcolor-stops

Implements

CfnTemplate.IGradientColorProperty
Back to top Generated by DocFX