interface RegistryRecordCredentialProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.RegistryRecordCredentialProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_RegistryRecordCredentialProviderConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordCredentialProviderConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordCredentialProviderConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » RegistryRecordCredentialProviderConfigurationProperty |
A credential provider configuration used for authenticated descriptor retrieval.
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 registryRecordCredentialProviderConfigurationProperty: agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordCredentialProviderConfigurationProperty = {
credentialProvider: {
iamCredentialProvider: {
region: 'region',
roleArn: 'roleArn',
service: 'service',
},
oauthCredentialProvider: {
customParameters: {
customParametersKey: 'customParameters',
},
grantType: 'grantType',
providerArn: 'providerArn',
scopes: ['scopes'],
},
},
credentialProviderType: 'credentialProviderType',
};
Properties
| Name | Type | Description |
|---|---|---|
| credential | IResolvable | Registry | The credential provider details. |
| credential | string |
credentialProvider?
Type:
IResolvable | Registry
(optional)
The credential provider details.
Specify exactly one member.
credentialProviderType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript