interface LaunchTemplate1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Events.InstanceEvents.AWSAPICallViaCloudTrail.LaunchTemplate1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/events#InstanceEvents_AWSAPICallViaCloudTrail_LaunchTemplate1 |
Java | software.amazon.awscdk.mixins.preview.services.ec2.events.InstanceEvents.AWSAPICallViaCloudTrail.LaunchTemplate1 |
Python | aws_cdk.mixins_preview.aws_ec2.events.InstanceEvents.AWSAPICallViaCloudTrail.LaunchTemplate1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_ec2 ยป events ยป InstanceEvents ยป AWSAPICallViaCloudTrail ยป LaunchTemplate1 |
Type definition for LaunchTemplate_1.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ec2_events } from '@aws-cdk/mixins-preview/aws-ec2';
const launchTemplate1: ec2_events.InstanceEvents.AWSAPICallViaCloudTrail.LaunchTemplate1 = {
createdBy: ['createdBy'],
createTime: ['createTime'],
defaultVersionNumber: ['defaultVersionNumber'],
latestVersionNumber: ['latestVersionNumber'],
launchTemplateId: ['launchTemplateId'],
launchTemplateName: ['launchTemplateName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| create | string[] | createTime property. |
| created | string[] | createdBy property. |
| default | string[] | defaultVersionNumber property. |
| latest | string[] | latestVersionNumber property. |
| launch | string[] | launchTemplateId property. |
| launch | string[] | launchTemplateName property. |
createTime?
Type:
string[]
(optional, default: Do not filter on this field)
createTime property.
Specify an array of string values to match this event if the actual value of createTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
createdBy?
Type:
string[]
(optional, default: Do not filter on this field)
createdBy property.
Specify an array of string values to match this event if the actual value of createdBy is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
defaultVersionNumber?
Type:
string[]
(optional, default: Do not filter on this field)
defaultVersionNumber property.
Specify an array of string values to match this event if the actual value of defaultVersionNumber is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
latestVersionNumber?
Type:
string[]
(optional, default: Do not filter on this field)
latestVersionNumber property.
Specify an array of string values to match this event if the actual value of latestVersionNumber is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
launchTemplateId?
Type:
string[]
(optional, default: Do not filter on this field)
launchTemplateId property.
Specify an array of string values to match this event if the actual value of launchTemplateId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
launchTemplateName?
Type:
string[]
(optional, default: Do not filter on this field)
launchTemplateName property.
Specify an array of string values to match this event if the actual value of launchTemplateName 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