interface CfnCapacityProviderMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnCapacityProviderMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnCapacityProviderMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnCapacityProviderMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnCapacityProviderMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnCapacityProviderMixinProps |
Properties for CfnCapacityProviderPropsMixin.
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 cfnCapacityProviderMixinProps: bedrockagentcore.CfnCapacityProviderMixinProps = {
computeConfiguration: {
ec2Configuration: {
launchTemplateSource: {
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',
},
},
lifecycleConfiguration: {
idleInstanceTimeout: 123,
maxLifetime: 123,
},
rootVolume: {
encrypted: false,
freeSpaceGiB: 123,
iops: 123,
kmsKeyId: 'kmsKeyId',
throughput: 123,
volumeType: 'volumeType',
},
volumes: [{
ebsConfiguration: {
encrypted: false,
iops: 123,
kmsKeyId: 'kmsKeyId',
name: 'name',
sizeGiB: 123,
snapshotId: 'snapshotId',
throughput: 123,
volumeType: 'volumeType',
},
}],
vpcConfiguration: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
},
},
description: 'description',
name: 'name',
permissionsConfiguration: {
capacityProviderOperatorRoleArn: 'capacityProviderOperatorRoleArn',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | IResolvable | Compute | The capacity configuration for the capacity provider. |
| description? | string | An optional description of the capacity provider. |
| name? | string | The name of the capacity provider. |
| permissions | IResolvable | Permissions | Configuration for permissions associated with a capacity provider. |
| tags? | Cfn[] | An array of key-value pairs to apply to the capacity provider. |
computeConfiguration?
Type:
IResolvable | Compute
(optional)
The capacity configuration for the capacity provider.
Defines the compute resources for this capacity provider.
description?
Type:
string
(optional)
An optional description of the capacity provider.
name?
Type:
string
(optional)
The name of the capacity provider.
permissionsConfiguration?
Type:
IResolvable | Permissions
(optional)
Configuration for permissions associated with a capacity provider.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to the capacity provider.

.NET
Go
Java
Python
TypeScript