interface RemediationParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Config.CfnRemediationConfiguration.RemediationParameterValueProperty |
Java | software.amazon.awscdk.services.config.CfnRemediationConfiguration.RemediationParameterValueProperty |
Python | aws_cdk.aws_config.CfnRemediationConfiguration.RemediationParameterValueProperty |
TypeScript | @aws-cdk/aws-config » CfnRemediationConfiguration » RemediationParameterValueProperty |
The value is either a dynamic (resource) value or a static value.
You must select either a dynamic value or a static value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as config from '@aws-cdk/aws-config';
const remediationParameterValueProperty: config.CfnRemediationConfiguration.RemediationParameterValueProperty = {
resourceValue: {
value: 'value',
},
staticValue: {
values: ['values'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | IResolvable | Resource | The value is dynamic and changes at run-time. |
| static | IResolvable | Static | The value is static and does not change at run-time. |
resourceValue?
Type:
IResolvable | Resource
(optional)
The value is dynamic and changes at run-time.
staticValue?
Type:
IResolvable | Static
(optional)
The value is static and does not change at run-time.

.NET
Java
Python
TypeScript