Interface IAccessPoint
(experimental) The interface that represents the AccessPoint resource.
Namespace: Amazon.CDK.AWS.S3ObjectLambda.Alpha
Assembly: Amazon.CDK.AWS.S3ObjectLambda.Alpha.dll
Syntax (csharp)
public interface IAccessPoint : IResource, IConstruct, IDependable, IEnvironmentAware
Syntax (vb)
Public Interface IAccessPoint Inherits IResource, IConstruct, IDependable, IEnvironmentAware
Remarks
Stability: Experimental
Synopsis
Properties
| AccessPointArn | (experimental) The ARN of the access point. |
| AccessPointCreationDate | (experimental) The creation data of the access point. |
| DomainName | (experimental) The IPv4 DNS name of the access point. |
| RegionalDomainName | (experimental) The regional domain name of the access point. |
Methods
| VirtualHostedUrlForObject(string?, IVirtualHostedStyleUrlOptions?) | (experimental) The virtual hosted-style URL of an S3 object through this access point. |
Properties
AccessPointArn
(experimental) The ARN of the access point.
string AccessPointArn { get; }
Property Value
Remarks
Stability: Experimental
Attribute: true
AccessPointCreationDate
(experimental) The creation data of the access point.
string AccessPointCreationDate { get; }
Property Value
Remarks
Stability: Experimental
Attribute: true
DomainName
(experimental) The IPv4 DNS name of the access point.
string DomainName { get; }
Property Value
Remarks
Stability: Experimental
RegionalDomainName
(experimental) The regional domain name of the access point.
string RegionalDomainName { get; }
Property Value
Remarks
Stability: Experimental
Methods
VirtualHostedUrlForObject(string?, IVirtualHostedStyleUrlOptions?)
(experimental) The virtual hosted-style URL of an S3 object through this access point.
string VirtualHostedUrlForObject(string? key = null, IVirtualHostedStyleUrlOptions? options = null)
Parameters
- key string
The S3 key of the object.
- options IVirtualHostedStyleUrlOptions
Options for generating URL.
Returns
an ObjectS3Url token
Remarks
Specify regional: false at the options for non-regional URL.
Stability: Experimental