interface CfnSessionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnSessionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnSessionProps |
Java | software.amazon.awscdk.services.ssm.CfnSessionProps |
Python | aws_cdk.aws_ssm.CfnSessionProps |
TypeScript | aws-cdk-lib » aws_ssm » CfnSessionProps |
Properties for defining a CfnSession.
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-lib';
const cfnSessionProps: ssm.CfnSessionProps = {
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