Class CfnAccessPoint.AliasProperty
The alias of an Object Lambda Access Point.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAccessPoint.AliasProperty : CfnAccessPoint.IAliasProperty
Syntax (vb)
Public Class CfnAccessPoint.AliasProperty Implements CfnAccessPoint.IAliasProperty
Remarks
For more information, see How to use a bucket-style alias for your S3 bucket Object Lambda Access Point .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3ObjectLambda;
var aliasProperty = new AliasProperty {
Value = "value",
// the properties below are optional
Status = "status"
};
Synopsis
Constructors
| AliasProperty() | The alias of an Object Lambda Access Point. |
Properties
| Status | The status of the Object Lambda Access Point alias. |
| Value | The alias value of the Object Lambda Access Point. |
Constructors
AliasProperty()
The alias of an Object Lambda Access Point.
public AliasProperty()
Remarks
For more information, see How to use a bucket-style alias for your S3 bucket Object Lambda Access Point .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3ObjectLambda;
var aliasProperty = new AliasProperty {
Value = "value",
// the properties below are optional
Status = "status"
};
Properties
Status
The status of the Object Lambda Access Point alias.
public string? Status { get; set; }
Property Value
Remarks
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
The alias value of the Object Lambda Access Point.
public string Value { get; set; }