interface LaunchTemplate1
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AutoScaling.Events.AWSAPICallViaCloudTrail.LaunchTemplate1 |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsautoscaling/events#AWSAPICallViaCloudTrail_LaunchTemplate1 |
Java | software.amazon.awscdk.mixins.preview.services.autoscaling.events.AWSAPICallViaCloudTrail.LaunchTemplate1 |
Python | aws_cdk.mixins_preview.aws_autoscaling.events.AWSAPICallViaCloudTrail.LaunchTemplate1 |
TypeScript | @aws-cdk/mixins-preview ยป aws_autoscaling ยป events ยป 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 autoscaling_events } from '@aws-cdk/mixins-preview/aws-autoscaling';
declare const overrides: any;
const launchTemplate1: autoscaling_events.AWSAPICallViaCloudTrail.LaunchTemplate1 = {
launchTemplateSpecification: {
launchTemplateName: ['launchTemplateName'],
version: ['version'],
},
overrides: [overrides],
};
Properties
| Name | Type | Description |
|---|---|---|
| launch | Launch | launchTemplateSpecification property. |
| overrides? | any[] | overrides property. |
launchTemplateSpecification?
Type:
Launch
(optional, default: Do not filter on this field)
launchTemplateSpecification property.
Specify an array of string values to match this event if the actual value of launchTemplateSpecification is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
overrides?
Type:
any[]
(optional, default: Do not filter on this field)
overrides property.
Specify an array of string values to match this event if the actual value of overrides 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