interface ConformancePackInputParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnConformancePackPropsMixin.ConformancePackInputParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnConformancePackPropsMixin_ConformancePackInputParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnConformancePackPropsMixin.ConformancePackInputParameterProperty |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnConformancePackPropsMixin.ConformancePackInputParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » CfnConformancePackPropsMixin » ConformancePackInputParameterProperty |
Input parameters in the form of key-value pairs for the conformance pack, both of which you define.
Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as config_mixins } from '@aws-cdk/mixins-preview/aws-config';
const conformancePackInputParameterProperty: config_mixins.CfnConformancePackPropsMixin.ConformancePackInputParameterProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | One part of a key-value pair. |
| parameter | string | Another part of the key-value pair. |
parameterName?
Type:
string
(optional)
One part of a key-value pair.
parameterValue?
Type:
string
(optional)
Another part of the key-value pair.

.NET
Go
Java
Python
TypeScript