interface CapacityReservationTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnCapacityProvider.CapacityReservationTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnCapacityProvider_CapacityReservationTargetProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnCapacityProvider.CapacityReservationTargetProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnCapacityProvider.CapacityReservationTargetProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnCapacityProvider » CapacityReservationTargetProperty |
Information about the target Capacity Reservation or Capacity Reservation group.
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-lib';
const capacityReservationTargetProperty: bedrockagentcore.CfnCapacityProvider.CapacityReservationTargetProperty = {
capacityReservationId: 'capacityReservationId',
capacityReservationResourceGroupArn: 'capacityReservationResourceGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity | string | The ID of the Capacity Reservation in which to run the instance. |
| capacity | string | The ARN of the Capacity Reservation resource group in which to run the instance. |
capacityReservationId?
Type:
string
(optional)
The ID of the Capacity Reservation in which to run the instance.
capacityReservationResourceGroupArn?
Type:
string
(optional)
The ARN of the Capacity Reservation resource group in which to run the instance.

.NET
Go
Java
Python
TypeScript