interface RegistryRecordIamCredentialProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryRecordPropsMixin.RegistryRecordIamCredentialProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryRecordPropsMixin_RegistryRecordIamCredentialProviderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordIamCredentialProviderProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryRecordPropsMixin.RegistryRecordIamCredentialProviderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryRecordPropsMixin » 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/cfn-property-mixins';
const registryRecordIamCredentialProviderProperty: agentregistry.CfnRegistryRecordPropsMixin.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