interface DescriptorSourceFromUrlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.DescriptorSourceFromUrlProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_DescriptorSourceFromUrlProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.DescriptorSourceFromUrlProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.DescriptorSourceFromUrlProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » DescriptorSourceFromUrlProperty |
URL-based descriptor source configuration, with credential provider configurations for authenticated URL 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 descriptorSourceFromUrlProperty: agentregistry.CfnRegistryRecordPropsMixin.DescriptorSourceFromUrlProperty = {
credentialProviderConfigurations: [{
credentialProvider: {
iamCredentialProvider: {
region: 'region',
roleArn: 'roleArn',
service: 'service',
},
oauthCredentialProvider: {
customParameters: {
customParametersKey: 'customParameters',
},
grantType: 'grantType',
providerArn: 'providerArn',
scopes: ['scopes'],
},
},
credentialProviderType: 'credentialProviderType',
}],
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| credential | IResolvable | (IResolvable | Registry)[] | The credential providers used to authenticate when fetching descriptor content from the source URL. |
| url? | string | URL source for descriptor content. |
credentialProviderConfigurations?
Type:
IResolvable | (IResolvable | Registry)[]
(optional)
The credential providers used to authenticate when fetching descriptor content from the source URL.
url?
Type:
string
(optional)
URL source for descriptor content.

.NET
Go
Java
Python
TypeScript