interface OpsItemReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SSM.OpsItemReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsssm#OpsItemReference |
Java | software.amazon.awscdk.interfaces.ssm.OpsItemReference |
Python | aws_cdk.interfaces.aws_ssm.OpsItemReference |
TypeScript | aws-cdk-lib » interfaces » aws_ssm » OpsItemReference |
A reference to a OpsItem 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_ssm } from 'aws-cdk-lib/interfaces';
const opsItemReference: interfaces_ssm.OpsItemReference = {
opsItemArn: 'opsItemArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| ops | string | The OpsItemArn of the OpsItem resource. |
opsItemArn
Type:
string
The OpsItemArn of the OpsItem resource.

.NET
Go
Java
Python
TypeScript