Show / Hide Table of Contents

Class CfnFarmMixinProps

Properties for CfnFarmPropsMixin.

Inheritance
object
CfnFarmMixinProps
Implements
ICfnFarmMixinProps
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.Deadline.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFarmMixinProps : ICfnFarmMixinProps
Syntax (vb)
Public Class CfnFarmMixinProps Implements ICfnFarmMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.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.Deadline.Mixins;

             var cfnFarmMixinProps = new CfnFarmMixinProps {
                 Description = "description",
                 DisplayName = "displayName",
                 KmsKeyArn = "kmsKeyArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnFarmMixinProps()

Properties for CfnFarmPropsMixin.

Properties

Description

A description of the farm that helps identify what the farm is used for.

DisplayName

The display name of the farm.

KmsKeyArn

The ARN for the KMS key.

Tags

The tags to add to your farm.

Constructors

CfnFarmMixinProps()

Properties for CfnFarmPropsMixin.

public CfnFarmMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.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.Deadline.Mixins;

             var cfnFarmMixinProps = new CfnFarmMixinProps {
                 Description = "description",
                 DisplayName = "displayName",
                 KmsKeyArn = "kmsKeyArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

A description of the farm that helps identify what the farm is used for.

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

string

Remarks
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

Default: - ""

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

DisplayName

The display name of the farm.

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

string

Remarks
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html#cfn-deadline-farm-displayname

KmsKeyArn

The ARN for the KMS key.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html#cfn-deadline-farm-kmskeyarn

Tags

The tags to add to your farm.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-farm.html#cfn-deadline-farm-tags

Implements

ICfnFarmMixinProps
Back to top Generated by DocFX