interface CfnPaymentManagerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentManagerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentManagerMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentManagerMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentManagerMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentManagerMixinProps |
Properties for CfnPaymentManagerPropsMixin.
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 cfnPaymentManagerMixinProps: bedrockagentcore.CfnPaymentManagerMixinProps = {
authorizerConfiguration: {
customJwtAuthorizer: {
allowedAudience: ['allowedAudience'],
allowedClients: ['allowedClients'],
allowedScopes: ['allowedScopes'],
customClaims: [{
authorizingClaimMatchValue: {
claimMatchOperator: 'claimMatchOperator',
claimMatchValue: {
matchValueString: 'matchValueString',
matchValueStringList: ['matchValueStringList'],
},
},
inboundTokenClaimName: 'inboundTokenClaimName',
inboundTokenClaimValueType: 'inboundTokenClaimValueType',
}],
discoveryUrl: 'discoveryUrl',
},
},
authorizerType: 'authorizerType',
description: 'description',
name: 'name',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authorizer | IResolvable | Authorizer | |
| authorizer | string | |
| description? | string | A description of the payment manager. |
| name? | string | The name of the payment manager. |
| role | string | The ARN of the IAM role for the payment manager. |
| tags? | Cfn[] | Tags to assign to the payment manager. |
authorizerConfiguration?
Type:
IResolvable | Authorizer
(optional)
authorizerType?
Type:
string
(optional)
description?
Type:
string
(optional)
A description of the payment manager.
name?
Type:
string
(optional)
The name of the payment manager.
roleArn?
Type:
string
(optional)
The ARN of the IAM role for the payment manager.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the payment manager.

.NET
Go
Java
Python
TypeScript