CfnDistributionTenantMixinProps
- class aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionTenantMixinProps(*, connection_group_id=None, customizations=None, distribution_id=None, domains=None, enabled=None, managed_certificate_request=None, name=None, parameters=None, tags=None)
Bases:
objectProperties for CfnDistributionTenantPropsMixin.
- Parameters:
connection_group_id (
Optional[str]) – The ID of the connection group for the distribution tenant. If you don’t specify a connection group, CloudFront uses the default connection group.customizations (
Union[IResolvable,CustomizationsProperty,Dict[str,Any],None]) – 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.distribution_id (
Optional[str]) – The ID of the multi-tenant distribution.domains (
Optional[Sequence[str]]) – The domains associated with the distribution tenant.enabled (
Union[bool,IResolvable,None]) – Indicates whether the distribution tenant is in an enabled state. If disabled, the distribution tenant won’t serve traffic.managed_certificate_request (
Union[IResolvable,ManagedCertificateRequestProperty,Dict[str,Any],None]) – An object that represents the request for the Amazon CloudFront managed ACM certificate.name (
Optional[str]) – The name of the distribution tenant.parameters (
Union[IResolvable,Sequence[Union[IResolvable,ParameterProperty,Dict[str,Any]]],None]) – 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.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A complex type that contains zero or moreTagelements.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_cloudfront import mixins as cloudfront_mixins cfn_distribution_tenant_mixin_props = cloudfront_mixins.CfnDistributionTenantMixinProps( connection_group_id="connectionGroupId", customizations=cloudfront_mixins.CfnDistributionTenantPropsMixin.CustomizationsProperty( certificate=cloudfront_mixins.CfnDistributionTenantPropsMixin.CertificateProperty( arn="arn" ), geo_restrictions=cloudfront_mixins.CfnDistributionTenantPropsMixin.GeoRestrictionCustomizationProperty( locations=["locations"], restriction_type="restrictionType" ), web_acl=cloudfront_mixins.CfnDistributionTenantPropsMixin.WebAclCustomizationProperty( action="action", arn="arn" ) ), distribution_id="distributionId", domains=["domains"], enabled=False, managed_certificate_request=cloudfront_mixins.CfnDistributionTenantPropsMixin.ManagedCertificateRequestProperty( certificate_transparency_logging_preference="certificateTransparencyLoggingPreference", primary_domain_name="primaryDomainName", validation_token_host="validationTokenHost" ), name="name", parameters=[cloudfront_mixins.CfnDistributionTenantPropsMixin.ParameterProperty( name="name", value="value" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- connection_group_id
The ID of the connection group for the distribution tenant.
If you don’t specify a connection group, CloudFront uses the default connection group.
- customizations
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.
- distribution_id
The ID of the multi-tenant distribution.
- domains
The domains associated with the distribution tenant.
- enabled
Indicates whether the distribution tenant is in an enabled state.
If disabled, the distribution tenant won’t serve traffic.
- managed_certificate_request
An object that represents the request for the Amazon CloudFront managed ACM certificate.
- name
The name of the distribution tenant.
- parameters
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.
- tags
A complex type that contains zero or more
Tagelements.