Show / Hide Table of Contents

Class CfnResourceSetProps

Properties for defining a CfnResourceSet.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-resourceset.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.FMS;

             var cfnResourceSetProps = new CfnResourceSetProps {
                 Name = "name",
                 ResourceTypeList = new [] { "resourceTypeList" },

                 // the properties below are optional
                 Description = "description",
                 Resources = new [] { "resources" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnResourceSetProps()

Properties for defining a CfnResourceSet.

Properties

Description

A description of the resource set.

Name

The descriptive name of the resource set.

ResourceTypeList

Determines the resources that can be associated to the resource set.

Resources

Properties for defining a CfnResourceSet.

Tags

Properties for defining a CfnResourceSet.

Constructors

CfnResourceSetProps()

Properties for defining a CfnResourceSet.

public CfnResourceSetProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-resourceset.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.FMS;

             var cfnResourceSetProps = new CfnResourceSetProps {
                 Name = "name",
                 ResourceTypeList = new [] { "resourceTypeList" },

                 // the properties below are optional
                 Description = "description",
                 Resources = new [] { "resources" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

A description of the resource set.

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

string

Remarks

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

Name

The descriptive name of the resource set.

public string Name { get; set; }
Property Value

string

Remarks

You can't change the name of a resource set after you create it.

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

ResourceTypeList

Determines the resources that can be associated to the resource set.

public string[] ResourceTypeList { get; set; }
Property Value

string[]

Remarks

Depending on your setting for max results and the number of resource sets, a single call might not return the full list.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-resourceset.html#cfn-fms-resourceset-resourcetypelist

Resources

Properties for defining a CfnResourceSet.

public string[]? Resources { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-resourceset.html#cfn-fms-resourceset-resources

Tags

Properties for defining a CfnResourceSet.

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

ICfnTag[]

Remarks

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

Implements

ICfnResourceSetProps
Back to top Generated by DocFX