interface RegistryRecordIamCredentialProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistryRecord.RegistryRecordIamCredentialProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistryRecord_RegistryRecordIamCredentialProviderProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistryRecord.RegistryRecordIamCredentialProviderProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistryRecord.RegistryRecordIamCredentialProviderProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistryRecord » RegistryRecordIamCredentialProviderProperty |
IAM 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-lib';
const registryRecordIamCredentialProviderProperty: agentregistry.CfnRegistryRecord.RegistryRecordIamCredentialProviderProperty = {
region: 'region',
roleArn: 'roleArn',
service: 'service',
};
Properties
| Name | Type | Description |
|---|---|---|
| region? | string | The SigV4 signing region. |
| role | string | The ARN of the IAM role. |
| service? | string | The SigV4 signing service name. |
region?
Type:
string
(optional)
The SigV4 signing region.
roleArn?
Type:
string
(optional)
The ARN of the IAM role.
service?
Type:
string
(optional)
The SigV4 signing service name.

.NET
Go
Java
Python
TypeScript