Show / Hide Table of Contents

Class CfnGroupMixinProps

Properties for CfnGroupPropsMixin.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-group.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.Synthetics.Mixins;

             var cfnGroupMixinProps = new CfnGroupMixinProps {
                 Name = "name",
                 ResourceArns = new [] { "resourceArns" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnGroupMixinProps()

Properties for CfnGroupPropsMixin.

Properties

Name

A name for the group. It can include any Unicode characters.

ResourceArns

The ARNs of the canaries that you want to associate with this group.

Tags

The list of key-value pairs that are associated with the group.

Constructors

CfnGroupMixinProps()

Properties for CfnGroupPropsMixin.

public CfnGroupMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-group.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.Synthetics.Mixins;

             var cfnGroupMixinProps = new CfnGroupMixinProps {
                 Name = "name",
                 ResourceArns = new [] { "resourceArns" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Name

A name for the group. It can include any Unicode characters.

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

string

Remarks

The names for all groups in your account, across all Regions, must be unique.

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

ResourceArns

The ARNs of the canaries that you want to associate with this group.

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

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-group.html#cfn-synthetics-group-resourcearns

Tags

The list of key-value pairs that are associated with the group.

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

ICfnTag[]

Remarks

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

Implements

ICfnGroupMixinProps
Back to top Generated by DocFX