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.S3Outposts
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-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

Constructors

CfnAccessPointProps()

Properties for defining a CfnAccessPoint.

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.

Constructors

CfnAccessPointProps()

Properties for defining a CfnAccessPoint.

public CfnAccessPointProps()
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
             };

Properties

Bucket

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

public string Bucket { get; set; }
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.

public string Name { get; set; }
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.

public object? Policy { get; set; }
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.

public object VpcConfiguration { get; set; }
Property Value

object

Remarks

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

Implements

ICfnAccessPointProps
Back to top Generated by DocFX