interface DocumentRequiresProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnDocumentPropsMixin.DocumentRequiresProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnDocumentPropsMixin_DocumentRequiresProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnDocumentPropsMixin.DocumentRequiresProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnDocumentPropsMixin.DocumentRequiresProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnDocumentPropsMixin » DocumentRequiresProperty |
An SSM document required by the current document.
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 documentRequiresProperty: ssm.CfnDocumentPropsMixin.DocumentRequiresProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the required SSM document. |
| version? | string | The document version required by the current document. |
name?
Type:
string
(optional)
The name of the required SSM document.
The name can be an Amazon Resource Name (ARN).
version?
Type:
string
(optional)
The document version required by the current document.

.NET
Go
Java
Python
TypeScript