Show / Hide Table of Contents

Class CfnAccessPointProps

Properties for defining a CfnAccessPoint.

Inheritance
object
CfnAccessPointProps
Implements
ICfnAccessPointProps
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 CfnAccessPointProps : ICfnAccessPointProps
Syntax (vb)
Public Class CfnAccessPointProps Implements ICfnAccessPointProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.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 contentTransformation;

             var cfnAccessPointProps = new CfnAccessPointProps {
                 ObjectLambdaConfiguration = new ObjectLambdaConfigurationProperty {
                     SupportingAccessPoint = "supportingAccessPoint",
                     TransformationConfigurations = new [] { new TransformationConfigurationProperty {
                         Actions = new [] { "actions" },
                         ContentTransformation = contentTransformation
                     } },

                     // the properties below are optional
                     AllowedFeatures = new [] { "allowedFeatures" },
                     CloudWatchMetricsEnabled = false
                 },

                 // the properties below are optional
                 Name = "name"
             };

Synopsis

Constructors

CfnAccessPointProps()

Properties for defining a CfnAccessPoint.

Properties

Name

The name of this access point.

ObjectLambdaConfiguration

A configuration used when creating an Object Lambda Access Point.

Constructors

CfnAccessPointProps()

Properties for defining a CfnAccessPoint.

public CfnAccessPointProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.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 contentTransformation;

             var cfnAccessPointProps = new CfnAccessPointProps {
                 ObjectLambdaConfiguration = new ObjectLambdaConfigurationProperty {
                     SupportingAccessPoint = "supportingAccessPoint",
                     TransformationConfigurations = new [] { new TransformationConfigurationProperty {
                         Actions = new [] { "actions" },
                         ContentTransformation = contentTransformation
                     } },

                     // the properties below are optional
                     AllowedFeatures = new [] { "allowedFeatures" },
                     CloudWatchMetricsEnabled = false
                 },

                 // the properties below are optional
                 Name = "name"
             };

Properties

Name

The name of this access point.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.html#cfn-s3objectlambda-accesspoint-name

ObjectLambdaConfiguration

A configuration used when creating an Object Lambda Access Point.

public object ObjectLambdaConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.html#cfn-s3objectlambda-accesspoint-objectlambdaconfiguration

Type union: either IResolvable or CfnAccessPoint.IObjectLambdaConfigurationProperty

Implements

ICfnAccessPointProps
Back to top Generated by DocFX