interface CfnSessionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnSessionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnSessionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnSessionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnSessionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnSessionMixinProps |
Properties for CfnSessionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-session.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from '@aws-cdk/cfn-property-mixins';
const cfnSessionMixinProps: ssm.CfnSessionMixinProps = {
reason: 'reason',
target: 'target',
};
Properties
| Name | Type | Description |
|---|---|---|
| reason? | string | The reason for connecting to the instance. |
| target? | string | The managed node to connect to for the session. |
reason?
Type:
string
(optional)
The reason for connecting to the instance.
target?
Type:
string
(optional)
The managed node to connect to for the session.

.NET
Go
Java
Python
TypeScript