interface HarnessGatewayOutboundAuthProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessGatewayOutboundAuthProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessGatewayOutboundAuthProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessGatewayOutboundAuthProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessGatewayOutboundAuthProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessGatewayOutboundAuthProperty |
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';
declare const awsIam: any;
declare const none: any;
const harnessGatewayOutboundAuthProperty: bedrockagentcore.CfnHarness.HarnessGatewayOutboundAuthProperty = {
awsIam: awsIam,
none: none,
oauth: {
providerArn: 'providerArn',
scopes: ['scopes'],
// the properties below are optional
customParameters: {
customParametersKey: 'customParameters',
},
defaultReturnUrl: 'defaultReturnUrl',
grantType: 'grantType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | any | |
| none? | any | |
| oauth? | IResolvable | OAuth |
awsIam?
Type:
any
(optional)
none?
Type:
any
(optional)
oauth?
Type:
IResolvable | OAuth
(optional)

.NET
Go
Java
Python
TypeScript