interface PatchBaselineReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SSM.PatchBaselineReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsssm#PatchBaselineReference |
Java | software.amazon.awscdk.interfaces.ssm.PatchBaselineReference |
Python | aws_cdk.interfaces.aws_ssm.PatchBaselineReference |
TypeScript | aws-cdk-lib » interfaces » aws_ssm » PatchBaselineReference |
A reference to a PatchBaseline resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as interfaces_aws_ssm } from 'aws-cdk-lib/interfaces';
const patchBaselineReference: interfaces_aws_ssm.PatchBaselineReference = {
patchBaselineId: 'patchBaselineId',
};
Properties
| Name | Type | Description |
|---|---|---|
| patch | string | The Id of the PatchBaseline resource. |
patchBaselineId
Type:
string
The Id of the PatchBaseline resource.

.NET
Go
Java
Python
TypeScript