interface ContactReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SSMContacts.ContactReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsssmcontacts#ContactReference |
Java | software.amazon.awscdk.interfaces.ssmcontacts.ContactReference |
Python | aws_cdk.interfaces.aws_ssmcontacts.ContactReference |
TypeScript | aws-cdk-lib » interfaces » aws_ssmcontacts » ContactReference |
A reference to a Contact resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssmcontacts as interfaces_ssmcontacts } from 'aws-cdk-lib/interfaces';
const contactReference: interfaces_ssmcontacts.ContactReference = {
contactArn: 'contactArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The Arn of the Contact resource. |
contactArn
Type:
string
The Arn of the Contact resource.

.NET
Go
Java
Python
TypeScript