interface SsmParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnResponsePlanPropsMixin.SsmParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnResponsePlanPropsMixin_SsmParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnResponsePlanPropsMixin.SsmParameterProperty |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnResponsePlanPropsMixin.SsmParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » 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 { mixins as ssmincidents_mixins } from '@aws-cdk/mixins-preview/aws-ssmincidents';
const ssmParameterProperty: ssmincidents_mixins.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