interface SsmParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMIncidents.CfnResponsePlanPropsMixin.SsmParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmincidents#CfnResponsePlanPropsMixin_SsmParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmincidents.CfnResponsePlanPropsMixin.SsmParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmincidents.CfnResponsePlanPropsMixin.SsmParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmincidents » CfnResponsePlanPropsMixin » SsmParameterProperty |
The key-value pair parameters to use when running the Automation runbook.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssmincidents as ssmincidents } from '@aws-cdk/cfn-property-mixins';
const ssmParameterProperty: ssmincidents.CfnResponsePlanPropsMixin.SsmParameterProperty = {
key: 'key',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key parameter to use when running the Automation runbook. |
| values? | string[] | The value parameter to use when running the Automation runbook. |
key?
Type:
string
(optional)
The key parameter to use when running the Automation runbook.
values?
Type:
string[]
(optional)
The value parameter to use when running the Automation runbook.

.NET
Go
Java
Python
TypeScript