interface AccessGrantReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3.AccessGrantReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#AccessGrantReference |
Java | software.amazon.awscdk.services.s3.AccessGrantReference |
Python | aws_cdk.aws_s3.AccessGrantReference |
TypeScript | aws-cdk-lib » aws_s3 » AccessGrantReference |
A reference to a AccessGrant resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from 'aws-cdk-lib';
const accessGrantReference: s3.AccessGrantReference = {
accessGrantArn: 'accessGrantArn',
accessGrantId: 'accessGrantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The ARN of the AccessGrant resource. |
| access | string | The AccessGrantId of the AccessGrant resource. |
accessGrantArn
Type:
string
The ARN of the AccessGrant resource.
accessGrantId
Type:
string
The AccessGrantId of the AccessGrant resource.

.NET
Go
Java
Python
TypeScript