Show / Hide Table of Contents

Class CfnGroup.ConfigurationItemProperty

One of the items in the service configuration assigned to a resource group.

Inheritance
System.Object
CfnGroup.ConfigurationItemProperty
Implements
CfnGroup.IConfigurationItemProperty
Namespace: Amazon.CDK.AWS.ResourceGroups
Assembly: Amazon.CDK.AWS.ResourceGroups.dll
Syntax (csharp)
public class ConfigurationItemProperty : Object, CfnGroup.IConfigurationItemProperty
Syntax (vb)
Public Class ConfigurationItemProperty
    Inherits Object
    Implements CfnGroup.IConfigurationItemProperty
Remarks

A service configuration can consist of one or more items. For details service configurations and how to construct them, see Service configurations for resource groups in the AWS Resource Groups User Guide .

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

ConfigurationItemProperty configurationItemProperty = new ConfigurationItemProperty {
    Parameters = new [] { new ConfigurationParameterProperty {
        Name = "name",
        Values = new [] { "values" }
    } },
    Type = "type"
};

Synopsis

Constructors

ConfigurationItemProperty()

Properties

Parameters

A collection of parameters for this configuration item.

Type

Specifies the type of configuration item.

Constructors

ConfigurationItemProperty()

public ConfigurationItemProperty()

Properties

Parameters

A collection of parameters for this configuration item.

public object Parameters { get; set; }
Property Value

System.Object

Remarks

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-configurationitem.html#cfn-resourcegroups-group-configurationitem-parameters

Type

Specifies the type of configuration item.

public string Type { get; set; }
Property Value

System.String

Remarks

Each item must have a unique value for type. For the list of the types that you can specify for a configuration item, see Supported resource types and parameters in the AWS Resource Groups User Guide .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resourcegroups-group-configurationitem.html#cfn-resourcegroups-group-configurationitem-type

Implements

CfnGroup.IConfigurationItemProperty
Back to top Generated by DocFX