interface AccessKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IAM.AccessKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiam#AccessKeyReference |
Java | software.amazon.awscdk.interfaces.iam.AccessKeyReference |
Python | aws_cdk.interfaces.aws_iam.AccessKeyReference |
TypeScript | aws-cdk-lib » interfaces » aws_iam » AccessKeyReference |
A reference to a AccessKey resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iam as interfaces_aws_iam } from 'aws-cdk-lib/interfaces';
const accessKeyReference: interfaces_aws_iam.AccessKeyReference = {
accessKeyId: 'accessKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The Id of the AccessKey resource. |
accessKeyId
Type:
string
The Id of the AccessKey resource.

.NET
Go
Java
Python
TypeScript