Interface CfnRuntime.AllowedWorkloadConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuntime.AllowedWorkloadConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnRuntime

@Stability(Stable) public static interface CfnRuntime.AllowedWorkloadConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
 AllowedWorkloadConfigurationProperty allowedWorkloadConfigurationProperty = AllowedWorkloadConfigurationProperty.builder()
         .hostingEnvironments(List.of(HostingEnvironmentProperty.builder()
                 .arn("arn")
                 .build()))
         .workloadIdentities(List.of("workloadIdentities"))
         .build();
 

See Also: