Show / Hide Table of Contents

Class CfnSystemMixinProps

Properties for CfnSystemPropsMixin.

Inheritance
object
CfnSystemMixinProps
Implements
ICfnSystemMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSystemMixinProps : ICfnSystemMixinProps
Syntax (vb)
Public Class CfnSystemMixinProps Implements ICfnSystemMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.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.CfnPropertyMixins.AWS.ResilienceHubV2;

             var cfnSystemMixinProps = new CfnSystemMixinProps {
                 Description = "description",
                 KmsKeyId = "kmsKeyId",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnSystemMixinProps()

Properties for CfnSystemPropsMixin.

Properties

Description

The description of the system.

KmsKeyId

The KMS key ID for encrypting system data.

Name

The name of the system.

Tags

Tags assigned to the system.

Constructors

CfnSystemMixinProps()

Properties for CfnSystemPropsMixin.

public CfnSystemMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.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.CfnPropertyMixins.AWS.ResilienceHubV2;

             var cfnSystemMixinProps = new CfnSystemMixinProps {
                 Description = "description",
                 KmsKeyId = "kmsKeyId",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

The description of the system.

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

string

Remarks

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

KmsKeyId

The KMS key ID for encrypting system data.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-resiliencehubv2-system.html#cfn-resiliencehubv2-system-kmskeyid

Name

The name of the system.

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

string

Remarks

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

Tags

Tags assigned to the system.

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

ICfnTag[]

Remarks

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

Implements

ICfnSystemMixinProps
Back to top Generated by DocFX