Show / Hide Table of Contents

Class CfnResourceCollectionProps

Properties for defining a CfnResourceCollection.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-resourcecollection.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.DevOpsGuru;

             var cfnResourceCollectionProps = new CfnResourceCollectionProps {
                 ResourceCollectionFilter = new ResourceCollectionFilterProperty {
                     CloudFormation = new CloudFormationCollectionFilterProperty {
                         StackNames = new [] { "stackNames" }
                     },
                     Tags = new [] { new TagCollectionProperty {
                         AppBoundaryKey = "appBoundaryKey",
                         TagValues = new [] { "tagValues" }
                     } }
                 }
             };

Synopsis

Constructors

CfnResourceCollectionProps()

Properties for defining a CfnResourceCollection.

Properties

ResourceCollectionFilter

Information about a filter used to specify which AWS resources are analyzed for anomalous behavior by DevOps Guru.

Constructors

CfnResourceCollectionProps()

Properties for defining a CfnResourceCollection.

public CfnResourceCollectionProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-resourcecollection.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.DevOpsGuru;

             var cfnResourceCollectionProps = new CfnResourceCollectionProps {
                 ResourceCollectionFilter = new ResourceCollectionFilterProperty {
                     CloudFormation = new CloudFormationCollectionFilterProperty {
                         StackNames = new [] { "stackNames" }
                     },
                     Tags = new [] { new TagCollectionProperty {
                         AppBoundaryKey = "appBoundaryKey",
                         TagValues = new [] { "tagValues" }
                     } }
                 }
             };

Properties

ResourceCollectionFilter

Information about a filter used to specify which AWS resources are analyzed for anomalous behavior by DevOps Guru.

public object ResourceCollectionFilter { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-resourcecollection.html#cfn-devopsguru-resourcecollection-resourcecollectionfilter

Type union: either IResolvable or CfnResourceCollection.IResourceCollectionFilterProperty

Implements

ICfnResourceCollectionProps
Back to top Generated by DocFX