Class CfnResourceSetProps
Properties for defining a CfnResourceSet
.
Implements
Inherited Members
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 |
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 |
Tags | Properties for defining a |
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
Remarks
Name
The descriptive name of the resource set.
public string Name { get; set; }
Property Value
Remarks
You can't change the name of a resource set after you create it.
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.
Resources
Properties for defining a CfnResourceSet
.
public string[]? Resources { get; set; }
Property Value
string[]
Remarks
Tags
Properties for defining a CfnResourceSet
.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]