interface AllowedWorkloadConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.AllowedWorkloadConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_AllowedWorkloadConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.AllowedWorkloadConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.AllowedWorkloadConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » AllowedWorkloadConfigurationProperty |
Allow-list of upstream workloads permitted to reach this resource via the workload identity chain.
When set, the data plane enforces that the introspected workload chain's caller matches one of the configured hosting environments or workload identities; absent means no chain enforcement.
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 allowedWorkloadConfigurationProperty: bedrockagentcore.CfnRuntime.AllowedWorkloadConfigurationProperty = {
hostingEnvironments: [{
arn: 'arn',
}],
workloadIdentities: ['workloadIdentities'],
};
Properties
| Name | Type | Description |
|---|---|---|
| hosting | IResolvable | (IResolvable | Hosting)[] | List of allow-listed hosting environments. |
| workload | string[] | List of allow-listed workload identity names. |
hostingEnvironments?
Type:
IResolvable | (IResolvable | Hosting)[]
(optional)
List of allow-listed hosting environments.
workloadIdentities?
Type:
string[]
(optional)
List of allow-listed workload identity names.

.NET
Go
Java
Python
TypeScript