interface LaunchTemplateSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnCapacityProviderPropsMixin.LaunchTemplateSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnCapacityProviderPropsMixin_LaunchTemplateSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnCapacityProviderPropsMixin.LaunchTemplateSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnCapacityProviderPropsMixin.LaunchTemplateSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnCapacityProviderPropsMixin » LaunchTemplateSourceProperty |
How the launch template is specified.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const launchTemplateSourceProperty: bedrockagentcore.CfnCapacityProviderPropsMixin.LaunchTemplateSourceProperty = {
launchParameters: {
capacityReservationSpecification: {
capacityReservationPreference: 'capacityReservationPreference',
capacityReservationTarget: {
capacityReservationId: 'capacityReservationId',
capacityReservationResourceGroupArn: 'capacityReservationResourceGroupArn',
},
},
ephemeralVolumes: [{
deviceName: 'deviceName',
ebs: {
ebsCardIndex: 123,
encrypted: false,
iops: 123,
kmsKeyId: 'kmsKeyId',
snapshotId: 'snapshotId',
throughput: 123,
volumeInitializationRate: 123,
volumeSize: 123,
volumeType: 'volumeType',
},
virtualName: 'virtualName',
}],
instanceProfileArn: 'instanceProfileArn',
instanceRequirements: {
allowedInstanceTypes: ['allowedInstanceTypes'],
},
licenseSpecifications: [{
licenseConfigurationArn: 'licenseConfigurationArn',
}],
monitoring: 'monitoring',
operatingSystem: 'operatingSystem',
propagatedTags: {
propagatedTagsKey: 'propagatedTags',
},
sshKeyName: 'sshKeyName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| launch | IResolvable | Launch | Parameters for launching EC2 instances. |
launchParameters?
Type:
IResolvable | Launch
(optional)
Parameters for launching EC2 instances.

.NET
Go
Java
Python
TypeScript