interface S3AccessPolicyStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Events.S3AccessPolicyStatusChange.S3AccessPolicyStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/events#S3AccessPolicyStatusChange_S3AccessPolicyStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.events.S3AccessPolicyStatusChange.S3AccessPolicyStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_omics.events.S3AccessPolicyStatusChange.S3AccessPolicyStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_omics ยป events ยป S3AccessPolicyStatusChange ยป S3AccessPolicyStatusChangeProps |
Props type for aws.omics@S3AccessPolicyStatusChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as omics_events } from '@aws-cdk/mixins-preview/aws-omics';
const s3AccessPolicyStatusChangeProps: omics_events.S3AccessPolicyStatusChange.S3AccessPolicyStatusChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
omicsVersion: ['omicsVersion'],
s3AccessPointArn: ['s3AccessPointArn'],
status: ['status'],
storeId: ['storeId'],
storeType: ['storeType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| omics | string[] | omicsVersion property. |
| s3 | string[] | s3AccessPointArn property. |
| status? | string[] | status property. |
| store | string[] | storeId property. |
| store | string[] | storeType property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
omicsVersion?
Type:
string[]
(optional, default: Do not filter on this field)
omicsVersion property.
Specify an array of string values to match this event if the actual value of omicsVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
s3AccessPointArn?
Type:
string[]
(optional, default: Do not filter on this field)
s3AccessPointArn property.
Specify an array of string values to match this event if the actual value of s3AccessPointArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
storeId?
Type:
string[]
(optional, default: Do not filter on this field)
storeId property.
Specify an array of string values to match this event if the actual value of storeId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
storeType?
Type:
string[]
(optional, default: Do not filter on this field)
storeType property.
Specify an array of string values to match this event if the actual value of storeType 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