interface StaticValueProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Config.CfnRemediationConfiguration.StaticValueProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconfig#CfnRemediationConfiguration_StaticValueProperty | 
  Java | software.amazon.awscdk.services.config.CfnRemediationConfiguration.StaticValueProperty | 
  Python | aws_cdk.aws_config.CfnRemediationConfiguration.StaticValueProperty | 
  TypeScript  | aws-cdk-lib » aws_config » CfnRemediationConfiguration » StaticValueProperty | 
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 staticValueProperty: config.CfnRemediationConfiguration.StaticValueProperty = {
  value: ['value'],
  values: ['values'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| value? | string[] | |
| values? | string[] | 
value?
Type:
string[]
(optional)
values?
Type:
string[]
(optional)

 .NET
 Go
 Java
 Python
 TypeScript