Interface CfnDistributionTenantMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionTenantMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
CfnDistributionTenantMixinProps cfnDistributionTenantMixinProps = CfnDistributionTenantMixinProps.builder()
.connectionGroupId("connectionGroupId")
.customizations(CustomizationsProperty.builder()
.certificate(CertificateProperty.builder()
.arn("arn")
.build())
.geoRestrictions(GeoRestrictionCustomizationProperty.builder()
.locations(List.of("locations"))
.restrictionType("restrictionType")
.build())
.webAcl(WebAclCustomizationProperty.builder()
.action("action")
.arn("arn")
.build())
.build())
.distributionId("distributionId")
.domains(List.of("domains"))
.enabled(false)
.managedCertificateRequest(ManagedCertificateRequestProperty.builder()
.certificateTransparencyLoggingPreference("certificateTransparencyLoggingPreference")
.primaryDomainName("primaryDomainName")
.validationTokenHost("validationTokenHost")
.build())
.name("name")
.parameters(List.of(ParameterProperty.builder()
.name("name")
.value("value")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDistributionTenantMixinPropsstatic final classAn implementation forCfnDistributionTenantMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of the connection group for the distribution tenant.default ObjectCustomizations for the distribution tenant.default StringThe ID of the multi-tenant distribution.The domains associated with the distribution tenant.default ObjectIndicates whether the distribution tenant is in an enabled state.default ObjectAn object that represents the request for the Amazon CloudFront managed ACM certificate.default StringgetName()The name of the distribution tenant.default ObjectA list of parameter values to add to the resource.getTags()A complex type that contains zero or moreTagelements.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionGroupId
The ID of the connection group for the distribution tenant.If you don't specify a connection group, CloudFront uses the default connection group.
- See Also:
-
getCustomizations
Customizations for the distribution tenant.For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and AWS WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.
Returns union: either
IResolvableorCfnDistributionTenantPropsMixin.CustomizationsProperty- See Also:
-
getDistributionId
The ID of the multi-tenant distribution.- See Also:
-
getDomains
The domains associated with the distribution tenant.- See Also:
-
getEnabled
Indicates whether the distribution tenant is in an enabled state.If disabled, the distribution tenant won't serve traffic.
Returns union: either
BooleanorIResolvable- See Also:
-
getManagedCertificateRequest
An object that represents the request for the Amazon CloudFront managed ACM certificate.Returns union: either
IResolvableorCfnDistributionTenantPropsMixin.ManagedCertificateRequestProperty- See Also:
-
getName
The name of the distribution tenant.- See Also:
-
getParameters
A list of parameter values to add to the resource.A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDistributionTenantPropsMixin.ParameterProperty>- See Also:
-
getTags
A complex type that contains zero or moreTagelements.- See Also:
-
builder
-