interface AliasProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3ObjectLambda.Mixins.CfnAccessPointPropsMixin.AliasProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3objectlambda/mixins#CfnAccessPointPropsMixin_AliasProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3objectlambda.mixins.CfnAccessPointPropsMixin.AliasProperty |
Python | aws_cdk.mixins_preview.aws_s3objectlambda.mixins.CfnAccessPointPropsMixin.AliasProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3objectlambda » mixins » CfnAccessPointPropsMixin » AliasProperty |
The alias of an Object Lambda Access Point.
For more information, see How to use a bucket-style alias for your S3 bucket Object Lambda Access Point .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3objectlambda_mixins } from '@aws-cdk/mixins-preview/aws-s3objectlambda';
const aliasProperty: s3objectlambda_mixins.CfnAccessPointPropsMixin.AliasProperty = {
status: 'status',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| status? | string | The status of the Object Lambda Access Point alias. |
| value? | string | The alias value of the Object Lambda Access Point. |
status?
Type:
string
(optional)
The status of the Object Lambda Access Point alias.
If the status is PROVISIONING , the Object Lambda Access Point is provisioning the alias and the alias is not ready for use yet. If the status is READY , the Object Lambda Access Point alias is successfully provisioned and ready for use.
value?
Type:
string
(optional)
The alias value of the Object Lambda Access Point.

.NET
Go
Java
Python
TypeScript