interface CreateAccountStatus
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Organizations.Events.AccountEvents.AWSServiceEventViaCloudTrail.CreateAccountStatus |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsorganizations/events#AccountEvents_AWSServiceEventViaCloudTrail_CreateAccountStatus |
Java | software.amazon.awscdk.mixins.preview.services.organizations.events.AccountEvents.AWSServiceEventViaCloudTrail.CreateAccountStatus |
Python | aws_cdk.mixins_preview.aws_organizations.events.AccountEvents.AWSServiceEventViaCloudTrail.CreateAccountStatus |
TypeScript | @aws-cdk/mixins-preview ยป aws_organizations ยป events ยป AccountEvents ยป AWSServiceEventViaCloudTrail ยป CreateAccountStatus |
Type definition for CreateAccountStatus.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as organizations_events } from '@aws-cdk/mixins-preview/aws-organizations';
const createAccountStatus: organizations_events.AccountEvents.AWSServiceEventViaCloudTrail.CreateAccountStatus = {
accountId: ['accountId'],
accountName: ['accountName'],
completedTimestamp: ['completedTimestamp'],
id: ['id'],
requestedTimestamp: ['requestedTimestamp'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | accountId property. |
| account | string[] | accountName property. |
| completed | string[] | completedTimestamp property. |
| id? | string[] | id property. |
| requested | string[] | requestedTimestamp property. |
| state? | string[] | state property. |
accountId?
Type:
string[]
(optional, default: Filter with the Account reference)
accountId property.
Specify an array of string values to match this event if the actual value of accountId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
accountName?
Type:
string[]
(optional, default: Do not filter on this field)
accountName property.
Specify an array of string values to match this event if the actual value of accountName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
completedTimestamp?
Type:
string[]
(optional, default: Do not filter on this field)
completedTimestamp property.
Specify an array of string values to match this event if the actual value of completedTimestamp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
id?
Type:
string[]
(optional, default: Do not filter on this field)
id property.
Specify an array of string values to match this event if the actual value of id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
requestedTimestamp?
Type:
string[]
(optional, default: Do not filter on this field)
requestedTimestamp property.
Specify an array of string values to match this event if the actual value of requestedTimestamp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
state property.
Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript