interface LaunchTemplateSpecification
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AutoScaling.Events.AWSAPICallViaCloudTrail.LaunchTemplateSpecification |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsautoscaling/events#AWSAPICallViaCloudTrail_LaunchTemplateSpecification |
Java | software.amazon.awscdk.mixins.preview.services.autoscaling.events.AWSAPICallViaCloudTrail.LaunchTemplateSpecification |
Python | aws_cdk.mixins_preview.aws_autoscaling.events.AWSAPICallViaCloudTrail.LaunchTemplateSpecification |
TypeScript | @aws-cdk/mixins-preview ยป aws_autoscaling ยป events ยป AWSAPICallViaCloudTrail ยป LaunchTemplateSpecification |
Type definition for LaunchTemplateSpecification.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as autoscaling_events } from '@aws-cdk/mixins-preview/aws-autoscaling';
const launchTemplateSpecification: autoscaling_events.AWSAPICallViaCloudTrail.LaunchTemplateSpecification = {
launchTemplateName: ['launchTemplateName'],
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| launch | string[] | launchTemplateName property. |
| version? | string[] | version property. |
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.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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