interface CfnOrganizationalUnitAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Notifications.CfnOrganizationalUnitAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnotifications#CfnOrganizationalUnitAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.notifications.CfnOrganizationalUnitAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_notifications.CfnOrganizationalUnitAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_notifications » CfnOrganizationalUnitAssociationMixinProps |
Properties for CfnOrganizationalUnitAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_notifications as notifications } from '@aws-cdk/cfn-property-mixins';
const cfnOrganizationalUnitAssociationMixinProps: notifications.CfnOrganizationalUnitAssociationMixinProps = {
notificationConfigurationArn: 'notificationConfigurationArn',
organizationalUnitId: 'organizationalUnitId',
};
Properties
| Name | Type | Description |
|---|---|---|
| notification | string | ARN identifier of the NotificationConfiguration. |
| organizational | string | The ID of the organizational unit. |
notificationConfigurationArn?
Type:
string
(optional)
ARN identifier of the NotificationConfiguration.
Example: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1
organizationalUnitId?
Type:
string
(optional)
The ID of the organizational unit.

.NET
Go
Java
Python
TypeScript