interface MGNSourceServerLaunchResultProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MGN.Events.MGNSourceServerLaunchResult.MGNSourceServerLaunchResultProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmgn/events#MGNSourceServerLaunchResult_MGNSourceServerLaunchResultProps |
Java | software.amazon.awscdk.mixins.preview.services.mgn.events.MGNSourceServerLaunchResult.MGNSourceServerLaunchResultProps |
Python | aws_cdk.mixins_preview.aws_mgn.events.MGNSourceServerLaunchResult.MGNSourceServerLaunchResultProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_mgn ยป events ยป MGNSourceServerLaunchResult ยป MGNSourceServerLaunchResultProps |
Props type for aws.mgn@MGNSourceServerLaunchResult event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as mgn_events } from '@aws-cdk/mixins-preview/aws-mgn';
const mGNSourceServerLaunchResultProps: mgn_events.MGNSourceServerLaunchResult.MGNSourceServerLaunchResultProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
jobId: ['jobId'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| job | string[] | job-id property. |
| state? | string[] | state property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
jobId?
Type:
string[]
(optional, default: Do not filter on this field)
job-id property.
Specify an array of string values to match this event if the actual value of job-id 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