interface RegistryRecordOAuthCredentialProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.RegistryRecordOAuthCredentialProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_RegistryRecordOAuthCredentialProviderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordOAuthCredentialProviderProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordOAuthCredentialProviderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » RegistryRecordOAuthCredentialProviderProperty |
OAuth credential provider configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_agentregistry as agentregistry } from '@aws-cdk/cfn-property-mixins';
const registryRecordOAuthCredentialProviderProperty: agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordOAuthCredentialProviderProperty = {
customParameters: {
customParametersKey: 'customParameters',
},
grantType: 'grantType',
providerArn: 'providerArn',
scopes: ['scopes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | IResolvable | { [string]: string } | Additional custom parameters for the OAuth flow. |
| grant | string | |
| provider | string | The ARN of the OAuth credential provider. |
| scopes? | string[] | OAuth scopes to request. |
customParameters?
Type:
IResolvable | { [string]: string }
(optional)
Additional custom parameters for the OAuth flow.
grantType?
Type:
string
(optional)
providerArn?
Type:
string
(optional)
The ARN of the OAuth credential provider.
scopes?
Type:
string[]
(optional)
OAuth scopes to request.

.NET
Go
Java
Python
TypeScript