Show / Hide Table of Contents

Class CfnAccessPoint.AliasProperty

The alias of an Object Lambda Access Point.

Inheritance
object
CfnAccessPoint.AliasProperty
Implements
CfnAccessPoint.IAliasProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-alias.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-alias.html

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

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-alias.html#cfn-s3objectlambda-accesspoint-alias-status

Value

The alias value of the Object Lambda Access Point.

public string Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3objectlambda-accesspoint-alias.html#cfn-s3objectlambda-accesspoint-alias-value

Implements

CfnAccessPoint.IAliasProperty
Back to top Generated by DocFX