Interface CfnAccessPointPropsMixin.AliasProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointPropsMixin.AliasProperty.Jsii$Proxy
- Enclosing class:
CfnAccessPointPropsMixin
@Stability(Stable)
public static interface CfnAccessPointPropsMixin.AliasProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.s3objectlambda.*;
AliasProperty aliasProperty = AliasProperty.builder()
.status("status")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPointPropsMixin.AliasPropertystatic final classAn implementation forCfnAccessPointPropsMixin.AliasProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatus
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 isREADY, the Object Lambda Access Point alias is successfully provisioned and ready for use.- See Also:
-
getValue
The alias value of the Object Lambda Access Point.- See Also:
-
builder
-