Show / Hide Table of Contents

Class CfnEntitlementProps

Properties for defining a CfnEntitlement.

Inheritance
object
CfnEntitlementProps
Implements
ICfnEntitlementProps
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.AppStream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEntitlementProps : ICfnEntitlementProps
Syntax (vb)
Public Class CfnEntitlementProps Implements ICfnEntitlementProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.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.AppStream;

             var cfnEntitlementProps = new CfnEntitlementProps {
                 AppVisibility = "appVisibility",
                 Attributes = new [] { new AttributeProperty {
                     Name = "name",
                     Value = "value"
                 } },
                 Name = "name",
                 StackName = "stackName",

                 // the properties below are optional
                 Description = "description"
             };

Synopsis

Constructors

CfnEntitlementProps()

Properties for defining a CfnEntitlement.

Properties

AppVisibility

Specifies whether to entitle all apps or only selected apps.

Attributes

The attributes of the entitlement.

Description

The description of the entitlement.

Name

The name of the entitlement.

StackName

The name of the stack.

Constructors

CfnEntitlementProps()

Properties for defining a CfnEntitlement.

public CfnEntitlementProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.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.AppStream;

             var cfnEntitlementProps = new CfnEntitlementProps {
                 AppVisibility = "appVisibility",
                 Attributes = new [] { new AttributeProperty {
                     Name = "name",
                     Value = "value"
                 } },
                 Name = "name",
                 StackName = "stackName",

                 // the properties below are optional
                 Description = "description"
             };

Properties

AppVisibility

Specifies whether to entitle all apps or only selected apps.

public string AppVisibility { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-appvisibility

Attributes

The attributes of the entitlement.

public object Attributes { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-attributes

Description

The description of the entitlement.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-description

Name

The name of the entitlement.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-name

StackName

The name of the stack.

public string StackName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-stackname

Implements

ICfnEntitlementProps
Back to top Generated by DocFX