Interface OriginAccessControlBaseProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
FunctionUrlOriginAccessControlProps,S3OriginAccessControlProps
- All Known Implementing Classes:
FunctionUrlOriginAccessControlProps.Jsii$Proxy,OriginAccessControlBaseProps.Jsii$Proxy,S3OriginAccessControlProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:47.112Z")
@Stability(Stable)
public interface OriginAccessControlBaseProps
extends software.amazon.jsii.JsiiSerializable
Common properties for creating a Origin Access Control resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudfront.*;
Signing signing;
OriginAccessControlBaseProps originAccessControlBaseProps = OriginAccessControlBaseProps.builder()
.description("description")
.originAccessControlName("originAccessControlName")
.signing(signing)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forOriginAccessControlBasePropsstatic final classAn implementation forOriginAccessControlBaseProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the origin access control.Default: - no description
-
getOriginAccessControlName
A name to identify the origin access control, with a maximum length of 64 characters.Default: - a generated name
-
getSigning
Specifies which requests CloudFront signs and the signing protocol.Default: SIGV4_ALWAYS
- See Also:
-
builder
-