interface RemediationParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnRemediationConfigurationPropsMixin.RemediationParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnRemediationConfigurationPropsMixin_RemediationParameterValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnRemediationConfigurationPropsMixin.RemediationParameterValueProperty |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnRemediationConfigurationPropsMixin.RemediationParameterValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » CfnRemediationConfigurationPropsMixin » 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 { mixins as config_mixins } from '@aws-cdk/mixins-preview/aws-config';
const remediationParameterValueProperty: config_mixins.CfnRemediationConfigurationPropsMixin.RemediationParameterValueProperty = {
resourceValue: {
value: 'value',
},
staticValue: {
value: ['value'],
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
Go
Java
Python
TypeScript