interface CapacityReservationSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnCapacityProviderPropsMixin.CapacityReservationSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnCapacityProviderPropsMixin_CapacityReservationSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnCapacityProviderPropsMixin.CapacityReservationSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnCapacityProviderPropsMixin.CapacityReservationSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnCapacityProviderPropsMixin » CapacityReservationSpecificationProperty |
The Capacity Reservation targeting option.
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 capacityReservationSpecificationProperty: bedrockagentcore.CfnCapacityProviderPropsMixin.CapacityReservationSpecificationProperty = {
capacityReservationPreference: 'capacityReservationPreference',
capacityReservationTarget: {
capacityReservationId: 'capacityReservationId',
capacityReservationResourceGroupArn: 'capacityReservationResourceGroupArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity | string | Indicates the instance's Capacity Reservation preferences. |
| capacity | IResolvable | Capacity | Information about the target Capacity Reservation or Capacity Reservation group. |
capacityReservationPreference?
Type:
string
(optional)
Indicates the instance's Capacity Reservation preferences.
capacityReservationTarget?
Type:
IResolvable | Capacity
(optional)
Information about the target Capacity Reservation or Capacity Reservation group.

.NET
Go
Java
Python
TypeScript