interface CredentialProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayTargetPropsMixin.CredentialProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayTargetPropsMixin_CredentialProviderConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayTargetPropsMixin.CredentialProviderConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayTargetPropsMixin.CredentialProviderConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayTargetPropsMixin » CredentialProviderConfigurationProperty |
The credential provider configuration for the gateway target.
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 credentialProviderConfigurationProperty: bedrockagentcore.CfnGatewayTargetPropsMixin.CredentialProviderConfigurationProperty = {
credentialProvider: {
apiKeyCredentialProvider: {
credentialLocation: 'credentialLocation',
credentialParameterName: 'credentialParameterName',
credentialPrefix: 'credentialPrefix',
providerArn: 'providerArn',
},
oauthCredentialProvider: {
customParameters: {
customParametersKey: 'customParameters',
},
defaultReturnUrl: 'defaultReturnUrl',
grantType: 'grantType',
providerArn: 'providerArn',
scopes: ['scopes'],
},
},
credentialProviderType: 'credentialProviderType',
};
Properties
| Name | Type | Description |
|---|---|---|
| credential | IResolvable | Credential | The credential provider for the gateway target. |
| credential | string | The credential provider type for the gateway target. |
credentialProvider?
Type:
IResolvable | Credential
(optional)
The credential provider for the gateway target.
credentialProviderType?
Type:
string
(optional)
The credential provider type for the gateway target.

.NET
Go
Java
Python
TypeScript