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
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
System.String
Remarks
Name
The name of this access point.
string Name { get; }
Property Value
System.String
Remarks
Policy
The access point policy associated with this access point.
virtual object Policy { get; }
Property Value
System.Object
Remarks
VpcConfiguration
The virtual private cloud (VPC) configuration for this access point, if one exists.
object VpcConfiguration { get; }
Property Value
System.Object