Show / Hide Table of Contents

Class CfnAccessPointProps

Properties for defining a CfnAccessPoint.

Inheritance
System.Object
CfnAccessPointProps
Implements
ICfnAccessPointProps
Namespace: Amazon.CDK.AWS.S3ObjectLambda
Assembly: Amazon.CDK.AWS.S3ObjectLambda.dll
Syntax (csharp)
public class CfnAccessPointProps : Object, ICfnAccessPointProps
Syntax (vb)
Public Class CfnAccessPointProps
    Inherits Object
    Implements ICfnAccessPointProps
Remarks

Link: 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

Name

The name of this access point.

ObjectLambdaConfiguration

A configuration used when creating an Object Lambda Access Point.

Constructors

CfnAccessPointProps()

public CfnAccessPointProps()

Properties

Name

The name of this access point.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: 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

System.Object

Remarks

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

Implements

ICfnAccessPointProps
Back to top Generated by DocFX