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

.NET
Go
Java
Python
TypeScript