interface OrganizationalUnitAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Notifications.OrganizationalUnitAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnotifications#OrganizationalUnitAssociationReference |
Java | software.amazon.awscdk.interfaces.notifications.OrganizationalUnitAssociationReference |
Python | aws_cdk.interfaces.aws_notifications.OrganizationalUnitAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_notifications » OrganizationalUnitAssociationReference |
A reference to a OrganizationalUnitAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_notifications as interfaces_aws_notifications } from 'aws-cdk-lib/interfaces';
const organizationalUnitAssociationReference: interfaces_aws_notifications.OrganizationalUnitAssociationReference = {
notificationConfigurationArn: 'notificationConfigurationArn',
organizationalUnitId: 'organizationalUnitId',
};
Properties
| Name | Type | Description |
|---|---|---|
| notification | string | The NotificationConfigurationArn of the OrganizationalUnitAssociation resource. |
| organizational | string | The OrganizationalUnitId of the OrganizationalUnitAssociation resource. |
notificationConfigurationArn
Type:
string
The NotificationConfigurationArn of the OrganizationalUnitAssociation resource.
organizationalUnitId
Type:
string
The OrganizationalUnitId of the OrganizationalUnitAssociation resource.

.NET
Go
Java
Python
TypeScript