Show / Hide Table of Contents

Interface CfnDistribution.IGeoRestrictionProperty

A complex type that controls the countries in which your content is distributed.

Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDistribution.IGeoRestrictionProperty
Syntax (vb)
Public Interface CfnDistribution.IGeoRestrictionProperty
Remarks

CloudFront determines the location of your users using MaxMind GeoIP databases. To disable geo restriction, remove the Restrictions property from your stack template.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.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.CloudFront;

             var geoRestrictionProperty = new GeoRestrictionProperty {
                 RestrictionType = "restrictionType",

                 // the properties below are optional
                 Locations = new [] { "locations" }
             };

Synopsis

Properties

Locations

A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content ( whitelist ) or not distribute your content ( blacklist ).

RestrictionType

The method that you want to use to restrict distribution of your content by country:.

Properties

Locations

A complex type that contains a Location element for each country in which you want CloudFront either to distribute your content ( whitelist ) or not distribute your content ( blacklist ).

string[]? Locations { get; }
Property Value

string[]

Remarks

The Location element is a two-letter, uppercase country code for a country that you want to include in your blacklist or whitelist . Include one Location element for each country.

CloudFront and MaxMind both use ISO 3166 country codes. For the current list of countries and the corresponding codes, see ISO 3166-1-alpha-2 code on the International Organization for Standardization website. You can also refer to the country list on the CloudFront console, which includes both country names and codes.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-locations

RestrictionType

The method that you want to use to restrict distribution of your content by country:.

string RestrictionType { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype

    Back to top Generated by DocFX