interface CfnApiKeyCredentialProviderMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnApiKeyCredentialProviderMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnApiKeyCredentialProviderMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnApiKeyCredentialProviderMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnApiKeyCredentialProviderMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnApiKeyCredentialProviderMixinProps |
Properties for CfnApiKeyCredentialProviderPropsMixin.
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 cfnApiKeyCredentialProviderMixinProps: bedrockagentcore.CfnApiKeyCredentialProviderMixinProps = {
apiKey: 'apiKey',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API key to use for authentication. |
| name? | string | The name of the API key credential provider. |
| tags? | Cfn[] | Tags to assign to the API key credential provider. |
apiKey?
Type:
string
(optional)
The API key to use for authentication.
name?
Type:
string
(optional)
The name of the API key credential provider.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the API key credential provider.

.NET
Go
Java
Python
TypeScript