public static interface CfnDistribution.OriginShieldProperty
Using Origin Shield can help reduce the load on your origin. For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide .
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.*; OriginShieldProperty originShieldProperty = OriginShieldProperty.builder() .enabled(false) .originShieldRegion("originShieldRegion") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDistribution.OriginShieldProperty.Builder
A builder for
CfnDistribution.OriginShieldProperty |
static class |
CfnDistribution.OriginShieldProperty.Jsii$Proxy
An implementation for
CfnDistribution.OriginShieldProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDistribution.OriginShieldProperty.Builder |
builder() |
default java.lang.Object |
getEnabled()
A flag that specifies whether Origin Shield is enabled.
|
default java.lang.String |
getOriginShieldRegion()
The AWS Region for Origin Shield.
|
default java.lang.Object getEnabled()
When it’s enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it’s disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.
default java.lang.String getOriginShieldRegion()
Specify the AWS Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2
.
When you enable CloudFront Origin Shield, you must specify the AWS Region for Origin Shield. For the list of AWS Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the AWS Region for Origin Shield in the Amazon CloudFront Developer Guide .
static CfnDistribution.OriginShieldProperty.Builder builder()