aws-cdk-lib.aws_config.CfnRemediationConfiguration.RemediationParameterValueProperty

interface RemediationParameterValueProperty

LanguageType name
.NETAmazon.CDK.AWS.Config.CfnRemediationConfiguration.RemediationParameterValueProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconfig#CfnRemediationConfiguration_RemediationParameterValueProperty
Javasoftware.amazon.awscdk.services.config.CfnRemediationConfiguration.RemediationParameterValueProperty
Pythonaws_cdk.aws_config.CfnRemediationConfiguration.RemediationParameterValueProperty
TypeScript aws-cdk-lib » 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 { aws_config as config } from 'aws-cdk-lib';
const remediationParameterValueProperty: config.CfnRemediationConfiguration.RemediationParameterValueProperty = {
  resourceValue: {
    value: 'value',
  },
  staticValue: {
    values: ['values'],
  },
};

Properties

NameTypeDescription
resourceValue?IResolvable | ResourceValuePropertyThe value is dynamic and changes at run-time.
staticValue?IResolvable | StaticValuePropertyThe value is static and does not change at run-time.

resourceValue?

Type: IResolvable | ResourceValueProperty (optional)

The value is dynamic and changes at run-time.


staticValue?

Type: IResolvable | StaticValueProperty (optional)

The value is static and does not change at run-time.