Show / Hide Table of Contents

Class CfnGroupPropsMixin.ConfigurationParameterProperty

One parameter for a group configuration item.

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

For details about service configurations and how to construct them, see Service configurations for resource groups in the Resource Groups User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-configurationparameter.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.ResourceGroups.Mixins;

             var configurationParameterProperty = new ConfigurationParameterProperty {
                 Name = "name",
                 Values = new [] { "values" }
             };

Synopsis

Constructors

ConfigurationParameterProperty()

One parameter for a group configuration item.

Properties

Name

The name of the group configuration parameter.

Values

The value or values to be used for the specified parameter.

Constructors

ConfigurationParameterProperty()

One parameter for a group configuration item.

public ConfigurationParameterProperty()
Remarks

For details about service configurations and how to construct them, see Service configurations for resource groups in the Resource Groups User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-configurationparameter.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.ResourceGroups.Mixins;

             var configurationParameterProperty = new ConfigurationParameterProperty {
                 Name = "name",
                 Values = new [] { "values" }
             };

Properties

Name

The name of the group configuration parameter.

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

string

Remarks

For the list of parameters that you can use with each configuration item type, see Supported resource types and parameters in the Resource Groups User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-configurationparameter.html#cfn-resourcegroups-group-configurationparameter-name

Values

The value or values to be used for the specified parameter.

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

string[]

Remarks

For the list of values you can use with each parameter, see Supported resource types and parameters .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-configurationparameter.html#cfn-resourcegroups-group-configurationparameter-values

Implements

CfnGroupPropsMixin.IConfigurationParameterProperty
Back to top Generated by DocFX