Show / Hide Table of Contents

Interface ICfnAccessPointProps

Properties for defining a CfnAccessPoint.

Namespace: Amazon.CDK.AWS.S3Outposts
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnAccessPointProps
Syntax (vb)
Public Interface ICfnAccessPointProps
Remarks

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

             var policy;

             var cfnAccessPointProps = new CfnAccessPointProps {
                 Bucket = "bucket",
                 Name = "name",
                 VpcConfiguration = new VpcConfigurationProperty {
                     VpcId = "vpcId"
                 },

                 // the properties below are optional
                 Policy = policy
             };

Synopsis

Properties

Bucket

The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.

Name

The name of this access point.

Policy

The access point policy associated with this access point.

VpcConfiguration

The virtual private cloud (VPC) configuration for this access point, if one exists.

Properties

Bucket

The Amazon Resource Name (ARN) of the S3 on Outposts bucket that is associated with this access point.

string Bucket { get; }
Property Value

string

Remarks

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

Name

The name of this access point.

string Name { get; }
Property Value

string

Remarks

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

Policy

The access point policy associated with this access point.

object? Policy { get; }
Property Value

object

Remarks

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

VpcConfiguration

The virtual private cloud (VPC) configuration for this access point, if one exists.

object VpcConfiguration { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX