1. Packages
  2. AWS
  3. API Docs
  4. cloudfront
  5. DistributionTenant
AWS v7.16.0 published on Friday, Jan 9, 2026 by Pulumi
aws logo
AWS v7.16.0 published on Friday, Jan 9, 2026 by Pulumi

    Creates an Amazon CloudFront distribution tenant.

    Distribution tenants allow you to create isolated configurations within a multi-tenant CloudFront distribution. Each tenant can have its own domains, customizations, and parameters while sharing the underlying distribution infrastructure.

    For information about CloudFront distribution tenants, see the Amazon CloudFront Developer Guide.

    Example Usage

    Basic Distribution Tenant

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.cloudfront.DistributionTenant("example", {
        name: "example-tenant",
        distributionId: exampleAwsCloudfrontMultitenantDistribution.id,
        enabled: true,
        domains: [{
            domain: "tenant.example.com",
        }],
        tags: {
            Environment: "production",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.cloudfront.DistributionTenant("example",
        name="example-tenant",
        distribution_id=example_aws_cloudfront_multitenant_distribution["id"],
        enabled=True,
        domains=[{
            "domain": "tenant.example.com",
        }],
        tags={
            "Environment": "production",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/cloudfront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudfront.NewDistributionTenant(ctx, "example", &cloudfront.DistributionTenantArgs{
    			Name:           pulumi.String("example-tenant"),
    			DistributionId: pulumi.Any(exampleAwsCloudfrontMultitenantDistribution.Id),
    			Enabled:        pulumi.Bool(true),
    			Domains: cloudfront.DistributionTenantDomainArray{
    				&cloudfront.DistributionTenantDomainArgs{
    					Domain: pulumi.String("tenant.example.com"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Environment": pulumi.String("production"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.CloudFront.DistributionTenant("example", new()
        {
            Name = "example-tenant",
            DistributionId = exampleAwsCloudfrontMultitenantDistribution.Id,
            Enabled = true,
            Domains = new[]
            {
                new Aws.CloudFront.Inputs.DistributionTenantDomainArgs
                {
                    Domain = "tenant.example.com",
                },
            },
            Tags = 
            {
                { "Environment", "production" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.cloudfront.DistributionTenant;
    import com.pulumi.aws.cloudfront.DistributionTenantArgs;
    import com.pulumi.aws.cloudfront.inputs.DistributionTenantDomainArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new DistributionTenant("example", DistributionTenantArgs.builder()
                .name("example-tenant")
                .distributionId(exampleAwsCloudfrontMultitenantDistribution.id())
                .enabled(true)
                .domains(DistributionTenantDomainArgs.builder()
                    .domain("tenant.example.com")
                    .build())
                .tags(Map.of("Environment", "production"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:cloudfront:DistributionTenant
        properties:
          name: example-tenant
          distributionId: ${exampleAwsCloudfrontMultitenantDistribution.id}
          enabled: true
          domains:
            - domain: tenant.example.com
          tags:
            Environment: production
    

    Distribution Tenant with Customizations

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.cloudfront.DistributionTenant("example", {
        name: "example-tenant",
        distributionId: exampleAwsCloudfrontMultitenantDistribution.id,
        enabled: false,
        domains: [{
            domain: "tenant.example.com",
        }],
        customizations: {
            geoRestriction: {
                restrictionType: "whitelist",
                locations: [
                    "US",
                    "CA",
                ],
            },
            certificate: {
                arn: tenantCert.arn,
            },
            webAcl: {
                action: "override",
                arn: tenantWaf.arn,
            },
        },
        tags: {
            Environment: "production",
            Tenant: "example",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.cloudfront.DistributionTenant("example",
        name="example-tenant",
        distribution_id=example_aws_cloudfront_multitenant_distribution["id"],
        enabled=False,
        domains=[{
            "domain": "tenant.example.com",
        }],
        customizations={
            "geo_restriction": {
                "restriction_type": "whitelist",
                "locations": [
                    "US",
                    "CA",
                ],
            },
            "certificate": {
                "arn": tenant_cert["arn"],
            },
            "web_acl": {
                "action": "override",
                "arn": tenant_waf["arn"],
            },
        },
        tags={
            "Environment": "production",
            "Tenant": "example",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/cloudfront"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudfront.NewDistributionTenant(ctx, "example", &cloudfront.DistributionTenantArgs{
    			Name:           pulumi.String("example-tenant"),
    			DistributionId: pulumi.Any(exampleAwsCloudfrontMultitenantDistribution.Id),
    			Enabled:        pulumi.Bool(false),
    			Domains: cloudfront.DistributionTenantDomainArray{
    				&cloudfront.DistributionTenantDomainArgs{
    					Domain: pulumi.String("tenant.example.com"),
    				},
    			},
    			Customizations: &cloudfront.DistributionTenantCustomizationsArgs{
    				GeoRestriction: &cloudfront.DistributionTenantCustomizationsGeoRestrictionArgs{
    					RestrictionType: pulumi.String("whitelist"),
    					Locations: pulumi.StringArray{
    						pulumi.String("US"),
    						pulumi.String("CA"),
    					},
    				},
    				Certificate: &cloudfront.DistributionTenantCustomizationsCertificateArgs{
    					Arn: pulumi.Any(tenantCert.Arn),
    				},
    				WebAcl: &cloudfront.DistributionTenantCustomizationsWebAclArgs{
    					Action: pulumi.String("override"),
    					Arn:    pulumi.Any(tenantWaf.Arn),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Environment": pulumi.String("production"),
    				"Tenant":      pulumi.String("example"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.CloudFront.DistributionTenant("example", new()
        {
            Name = "example-tenant",
            DistributionId = exampleAwsCloudfrontMultitenantDistribution.Id,
            Enabled = false,
            Domains = new[]
            {
                new Aws.CloudFront.Inputs.DistributionTenantDomainArgs
                {
                    Domain = "tenant.example.com",
                },
            },
            Customizations = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsArgs
            {
                GeoRestriction = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsGeoRestrictionArgs
                {
                    RestrictionType = "whitelist",
                    Locations = new[]
                    {
                        "US",
                        "CA",
                    },
                },
                Certificate = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsCertificateArgs
                {
                    Arn = tenantCert.Arn,
                },
                WebAcl = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsWebAclArgs
                {
                    Action = "override",
                    Arn = tenantWaf.Arn,
                },
            },
            Tags = 
            {
                { "Environment", "production" },
                { "Tenant", "example" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.cloudfront.DistributionTenant;
    import com.pulumi.aws.cloudfront.DistributionTenantArgs;
    import com.pulumi.aws.cloudfront.inputs.DistributionTenantDomainArgs;
    import com.pulumi.aws.cloudfront.inputs.DistributionTenantCustomizationsArgs;
    import com.pulumi.aws.cloudfront.inputs.DistributionTenantCustomizationsGeoRestrictionArgs;
    import com.pulumi.aws.cloudfront.inputs.DistributionTenantCustomizationsCertificateArgs;
    import com.pulumi.aws.cloudfront.inputs.DistributionTenantCustomizationsWebAclArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new DistributionTenant("example", DistributionTenantArgs.builder()
                .name("example-tenant")
                .distributionId(exampleAwsCloudfrontMultitenantDistribution.id())
                .enabled(false)
                .domains(DistributionTenantDomainArgs.builder()
                    .domain("tenant.example.com")
                    .build())
                .customizations(DistributionTenantCustomizationsArgs.builder()
                    .geoRestriction(DistributionTenantCustomizationsGeoRestrictionArgs.builder()
                        .restrictionType("whitelist")
                        .locations(                    
                            "US",
                            "CA")
                        .build())
                    .certificate(DistributionTenantCustomizationsCertificateArgs.builder()
                        .arn(tenantCert.arn())
                        .build())
                    .webAcl(DistributionTenantCustomizationsWebAclArgs.builder()
                        .action("override")
                        .arn(tenantWaf.arn())
                        .build())
                    .build())
                .tags(Map.ofEntries(
                    Map.entry("Environment", "production"),
                    Map.entry("Tenant", "example")
                ))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:cloudfront:DistributionTenant
        properties:
          name: example-tenant
          distributionId: ${exampleAwsCloudfrontMultitenantDistribution.id}
          enabled: false
          domains:
            - domain: tenant.example.com
          customizations:
            geoRestriction:
              restrictionType: whitelist
              locations:
                - US
                - CA
            certificate:
              arn: ${tenantCert.arn}
            webAcl:
              action: override
              arn: ${tenantWaf.arn}
          tags:
            Environment: production
            Tenant: example
    

    Create DistributionTenant Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DistributionTenant(name: string, args: DistributionTenantArgs, opts?: CustomResourceOptions);
    @overload
    def DistributionTenant(resource_name: str,
                           args: DistributionTenantArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def DistributionTenant(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           distribution_id: Optional[str] = None,
                           connection_group_id: Optional[str] = None,
                           customizations: Optional[DistributionTenantCustomizationsArgs] = None,
                           domains: Optional[Sequence[DistributionTenantDomainArgs]] = None,
                           enabled: Optional[bool] = None,
                           managed_certificate_request: Optional[DistributionTenantManagedCertificateRequestArgs] = None,
                           name: Optional[str] = None,
                           parameters: Optional[Sequence[DistributionTenantParameterArgs]] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           timeouts: Optional[DistributionTenantTimeoutsArgs] = None,
                           wait_for_deployment: Optional[bool] = None)
    func NewDistributionTenant(ctx *Context, name string, args DistributionTenantArgs, opts ...ResourceOption) (*DistributionTenant, error)
    public DistributionTenant(string name, DistributionTenantArgs args, CustomResourceOptions? opts = null)
    public DistributionTenant(String name, DistributionTenantArgs args)
    public DistributionTenant(String name, DistributionTenantArgs args, CustomResourceOptions options)
    
    type: aws:cloudfront:DistributionTenant
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DistributionTenantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DistributionTenantArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DistributionTenantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DistributionTenantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DistributionTenantArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var distributionTenantResource = new Aws.CloudFront.DistributionTenant("distributionTenantResource", new()
    {
        DistributionId = "string",
        ConnectionGroupId = "string",
        Customizations = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsArgs
        {
            Certificate = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsCertificateArgs
            {
                Arn = "string",
            },
            GeoRestriction = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsGeoRestrictionArgs
            {
                Locations = new[]
                {
                    "string",
                },
                RestrictionType = "string",
            },
            WebAcl = new Aws.CloudFront.Inputs.DistributionTenantCustomizationsWebAclArgs
            {
                Action = "string",
                Arn = "string",
            },
        },
        Domains = new[]
        {
            new Aws.CloudFront.Inputs.DistributionTenantDomainArgs
            {
                Domain = "string",
                Status = "string",
            },
        },
        Enabled = false,
        ManagedCertificateRequest = new Aws.CloudFront.Inputs.DistributionTenantManagedCertificateRequestArgs
        {
            CertificateTransparencyLoggingPreference = "string",
            PrimaryDomainName = "string",
            ValidationTokenHost = "string",
        },
        Name = "string",
        Parameters = new[]
        {
            new Aws.CloudFront.Inputs.DistributionTenantParameterArgs
            {
                Name = "string",
                Value = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.CloudFront.Inputs.DistributionTenantTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        WaitForDeployment = false,
    });
    
    example, err := cloudfront.NewDistributionTenant(ctx, "distributionTenantResource", &cloudfront.DistributionTenantArgs{
    	DistributionId:    pulumi.String("string"),
    	ConnectionGroupId: pulumi.String("string"),
    	Customizations: &cloudfront.DistributionTenantCustomizationsArgs{
    		Certificate: &cloudfront.DistributionTenantCustomizationsCertificateArgs{
    			Arn: pulumi.String("string"),
    		},
    		GeoRestriction: &cloudfront.DistributionTenantCustomizationsGeoRestrictionArgs{
    			Locations: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			RestrictionType: pulumi.String("string"),
    		},
    		WebAcl: &cloudfront.DistributionTenantCustomizationsWebAclArgs{
    			Action: pulumi.String("string"),
    			Arn:    pulumi.String("string"),
    		},
    	},
    	Domains: cloudfront.DistributionTenantDomainArray{
    		&cloudfront.DistributionTenantDomainArgs{
    			Domain: pulumi.String("string"),
    			Status: pulumi.String("string"),
    		},
    	},
    	Enabled: pulumi.Bool(false),
    	ManagedCertificateRequest: &cloudfront.DistributionTenantManagedCertificateRequestArgs{
    		CertificateTransparencyLoggingPreference: pulumi.String("string"),
    		PrimaryDomainName:                        pulumi.String("string"),
    		ValidationTokenHost:                      pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	Parameters: cloudfront.DistributionTenantParameterArray{
    		&cloudfront.DistributionTenantParameterArgs{
    			Name:  pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &cloudfront.DistributionTenantTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	WaitForDeployment: pulumi.Bool(false),
    })
    
    var distributionTenantResource = new DistributionTenant("distributionTenantResource", DistributionTenantArgs.builder()
        .distributionId("string")
        .connectionGroupId("string")
        .customizations(DistributionTenantCustomizationsArgs.builder()
            .certificate(DistributionTenantCustomizationsCertificateArgs.builder()
                .arn("string")
                .build())
            .geoRestriction(DistributionTenantCustomizationsGeoRestrictionArgs.builder()
                .locations("string")
                .restrictionType("string")
                .build())
            .webAcl(DistributionTenantCustomizationsWebAclArgs.builder()
                .action("string")
                .arn("string")
                .build())
            .build())
        .domains(DistributionTenantDomainArgs.builder()
            .domain("string")
            .status("string")
            .build())
        .enabled(false)
        .managedCertificateRequest(DistributionTenantManagedCertificateRequestArgs.builder()
            .certificateTransparencyLoggingPreference("string")
            .primaryDomainName("string")
            .validationTokenHost("string")
            .build())
        .name("string")
        .parameters(DistributionTenantParameterArgs.builder()
            .name("string")
            .value("string")
            .build())
        .tags(Map.of("string", "string"))
        .timeouts(DistributionTenantTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .waitForDeployment(false)
        .build());
    
    distribution_tenant_resource = aws.cloudfront.DistributionTenant("distributionTenantResource",
        distribution_id="string",
        connection_group_id="string",
        customizations={
            "certificate": {
                "arn": "string",
            },
            "geo_restriction": {
                "locations": ["string"],
                "restriction_type": "string",
            },
            "web_acl": {
                "action": "string",
                "arn": "string",
            },
        },
        domains=[{
            "domain": "string",
            "status": "string",
        }],
        enabled=False,
        managed_certificate_request={
            "certificate_transparency_logging_preference": "string",
            "primary_domain_name": "string",
            "validation_token_host": "string",
        },
        name="string",
        parameters=[{
            "name": "string",
            "value": "string",
        }],
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        wait_for_deployment=False)
    
    const distributionTenantResource = new aws.cloudfront.DistributionTenant("distributionTenantResource", {
        distributionId: "string",
        connectionGroupId: "string",
        customizations: {
            certificate: {
                arn: "string",
            },
            geoRestriction: {
                locations: ["string"],
                restrictionType: "string",
            },
            webAcl: {
                action: "string",
                arn: "string",
            },
        },
        domains: [{
            domain: "string",
            status: "string",
        }],
        enabled: false,
        managedCertificateRequest: {
            certificateTransparencyLoggingPreference: "string",
            primaryDomainName: "string",
            validationTokenHost: "string",
        },
        name: "string",
        parameters: [{
            name: "string",
            value: "string",
        }],
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        waitForDeployment: false,
    });
    
    type: aws:cloudfront:DistributionTenant
    properties:
        connectionGroupId: string
        customizations:
            certificate:
                arn: string
            geoRestriction:
                locations:
                    - string
                restrictionType: string
            webAcl:
                action: string
                arn: string
        distributionId: string
        domains:
            - domain: string
              status: string
        enabled: false
        managedCertificateRequest:
            certificateTransparencyLoggingPreference: string
            primaryDomainName: string
            validationTokenHost: string
        name: string
        parameters:
            - name: string
              value: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        waitForDeployment: false
    

    DistributionTenant Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DistributionTenant resource accepts the following input properties:

    DistributionId string
    ID of the multi-tenant distribution.
    ConnectionGroupId string
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    Customizations DistributionTenantCustomizations
    Customizations for the distribution tenant (maximum one).
    Domains List<DistributionTenantDomain>
    Set of domains associated with the distribution tenant.
    Enabled bool
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    ManagedCertificateRequest DistributionTenantManagedCertificateRequest
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    Name string
    Name of the distribution tenant.
    Parameters List<DistributionTenantParameter>
    Set of parameter values for the distribution tenant.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts DistributionTenantTimeouts
    WaitForDeployment bool
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    DistributionId string
    ID of the multi-tenant distribution.
    ConnectionGroupId string
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    Customizations DistributionTenantCustomizationsArgs
    Customizations for the distribution tenant (maximum one).
    Domains []DistributionTenantDomainArgs
    Set of domains associated with the distribution tenant.
    Enabled bool
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    ManagedCertificateRequest DistributionTenantManagedCertificateRequestArgs
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    Name string
    Name of the distribution tenant.
    Parameters []DistributionTenantParameterArgs
    Set of parameter values for the distribution tenant.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts DistributionTenantTimeoutsArgs
    WaitForDeployment bool
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    distributionId String
    ID of the multi-tenant distribution.
    connectionGroupId String
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations DistributionTenantCustomizations
    Customizations for the distribution tenant (maximum one).
    domains List<DistributionTenantDomain>
    Set of domains associated with the distribution tenant.
    enabled Boolean
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    managedCertificateRequest DistributionTenantManagedCertificateRequest
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name String
    Name of the distribution tenant.
    parameters List<DistributionTenantParameter>
    Set of parameter values for the distribution tenant.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts DistributionTenantTimeouts
    waitForDeployment Boolean
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    distributionId string
    ID of the multi-tenant distribution.
    connectionGroupId string
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations DistributionTenantCustomizations
    Customizations for the distribution tenant (maximum one).
    domains DistributionTenantDomain[]
    Set of domains associated with the distribution tenant.
    enabled boolean
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    managedCertificateRequest DistributionTenantManagedCertificateRequest
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name string
    Name of the distribution tenant.
    parameters DistributionTenantParameter[]
    Set of parameter values for the distribution tenant.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts DistributionTenantTimeouts
    waitForDeployment boolean
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    distribution_id str
    ID of the multi-tenant distribution.
    connection_group_id str
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations DistributionTenantCustomizationsArgs
    Customizations for the distribution tenant (maximum one).
    domains Sequence[DistributionTenantDomainArgs]
    Set of domains associated with the distribution tenant.
    enabled bool
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    managed_certificate_request DistributionTenantManagedCertificateRequestArgs
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name str
    Name of the distribution tenant.
    parameters Sequence[DistributionTenantParameterArgs]
    Set of parameter values for the distribution tenant.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts DistributionTenantTimeoutsArgs
    wait_for_deployment bool
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    distributionId String
    ID of the multi-tenant distribution.
    connectionGroupId String
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations Property Map
    Customizations for the distribution tenant (maximum one).
    domains List<Property Map>
    Set of domains associated with the distribution tenant.
    enabled Boolean
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    managedCertificateRequest Property Map
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name String
    Name of the distribution tenant.
    parameters List<Property Map>
    Set of parameter values for the distribution tenant.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map
    waitForDeployment Boolean
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DistributionTenant resource produces the following output properties:

    Arn string
    ARN of the distribution tenant.
    Etag string
    Current version of the distribution tenant.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Current status of the distribution tenant.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Arn string
    ARN of the distribution tenant.
    Etag string
    Current version of the distribution tenant.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Current status of the distribution tenant.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn String
    ARN of the distribution tenant.
    etag String
    Current version of the distribution tenant.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Current status of the distribution tenant.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn string
    ARN of the distribution tenant.
    etag string
    Current version of the distribution tenant.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Current status of the distribution tenant.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn str
    ARN of the distribution tenant.
    etag str
    Current version of the distribution tenant.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Current status of the distribution tenant.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    arn String
    ARN of the distribution tenant.
    etag String
    Current version of the distribution tenant.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Current status of the distribution tenant.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Look up Existing DistributionTenant Resource

    Get an existing DistributionTenant resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DistributionTenantState, opts?: CustomResourceOptions): DistributionTenant
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            connection_group_id: Optional[str] = None,
            customizations: Optional[DistributionTenantCustomizationsArgs] = None,
            distribution_id: Optional[str] = None,
            domains: Optional[Sequence[DistributionTenantDomainArgs]] = None,
            enabled: Optional[bool] = None,
            etag: Optional[str] = None,
            managed_certificate_request: Optional[DistributionTenantManagedCertificateRequestArgs] = None,
            name: Optional[str] = None,
            parameters: Optional[Sequence[DistributionTenantParameterArgs]] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[DistributionTenantTimeoutsArgs] = None,
            wait_for_deployment: Optional[bool] = None) -> DistributionTenant
    func GetDistributionTenant(ctx *Context, name string, id IDInput, state *DistributionTenantState, opts ...ResourceOption) (*DistributionTenant, error)
    public static DistributionTenant Get(string name, Input<string> id, DistributionTenantState? state, CustomResourceOptions? opts = null)
    public static DistributionTenant get(String name, Output<String> id, DistributionTenantState state, CustomResourceOptions options)
    resources:  _:    type: aws:cloudfront:DistributionTenant    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN of the distribution tenant.
    ConnectionGroupId string
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    Customizations DistributionTenantCustomizations
    Customizations for the distribution tenant (maximum one).
    DistributionId string
    ID of the multi-tenant distribution.
    Domains List<DistributionTenantDomain>
    Set of domains associated with the distribution tenant.
    Enabled bool
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    Etag string
    Current version of the distribution tenant.
    ManagedCertificateRequest DistributionTenantManagedCertificateRequest
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    Name string
    Name of the distribution tenant.
    Parameters List<DistributionTenantParameter>
    Set of parameter values for the distribution tenant.
    Status string
    Current status of the distribution tenant.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts DistributionTenantTimeouts
    WaitForDeployment bool
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    Arn string
    ARN of the distribution tenant.
    ConnectionGroupId string
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    Customizations DistributionTenantCustomizationsArgs
    Customizations for the distribution tenant (maximum one).
    DistributionId string
    ID of the multi-tenant distribution.
    Domains []DistributionTenantDomainArgs
    Set of domains associated with the distribution tenant.
    Enabled bool
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    Etag string
    Current version of the distribution tenant.
    ManagedCertificateRequest DistributionTenantManagedCertificateRequestArgs
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    Name string
    Name of the distribution tenant.
    Parameters []DistributionTenantParameterArgs
    Set of parameter values for the distribution tenant.
    Status string
    Current status of the distribution tenant.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    Timeouts DistributionTenantTimeoutsArgs
    WaitForDeployment bool
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    arn String
    ARN of the distribution tenant.
    connectionGroupId String
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations DistributionTenantCustomizations
    Customizations for the distribution tenant (maximum one).
    distributionId String
    ID of the multi-tenant distribution.
    domains List<DistributionTenantDomain>
    Set of domains associated with the distribution tenant.
    enabled Boolean
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    etag String
    Current version of the distribution tenant.
    managedCertificateRequest DistributionTenantManagedCertificateRequest
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name String
    Name of the distribution tenant.
    parameters List<DistributionTenantParameter>
    Set of parameter values for the distribution tenant.
    status String
    Current status of the distribution tenant.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts DistributionTenantTimeouts
    waitForDeployment Boolean
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    arn string
    ARN of the distribution tenant.
    connectionGroupId string
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations DistributionTenantCustomizations
    Customizations for the distribution tenant (maximum one).
    distributionId string
    ID of the multi-tenant distribution.
    domains DistributionTenantDomain[]
    Set of domains associated with the distribution tenant.
    enabled boolean
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    etag string
    Current version of the distribution tenant.
    managedCertificateRequest DistributionTenantManagedCertificateRequest
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name string
    Name of the distribution tenant.
    parameters DistributionTenantParameter[]
    Set of parameter values for the distribution tenant.
    status string
    Current status of the distribution tenant.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts DistributionTenantTimeouts
    waitForDeployment boolean
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    arn str
    ARN of the distribution tenant.
    connection_group_id str
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations DistributionTenantCustomizationsArgs
    Customizations for the distribution tenant (maximum one).
    distribution_id str
    ID of the multi-tenant distribution.
    domains Sequence[DistributionTenantDomainArgs]
    Set of domains associated with the distribution tenant.
    enabled bool
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    etag str
    Current version of the distribution tenant.
    managed_certificate_request DistributionTenantManagedCertificateRequestArgs
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name str
    Name of the distribution tenant.
    parameters Sequence[DistributionTenantParameterArgs]
    Set of parameter values for the distribution tenant.
    status str
    Current status of the distribution tenant.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts DistributionTenantTimeoutsArgs
    wait_for_deployment bool
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.
    arn String
    ARN of the distribution tenant.
    connectionGroupId String
    ID of the connection group for the distribution tenant. If not specified, CloudFront uses the default connection group.
    customizations Property Map
    Customizations for the distribution tenant (maximum one).
    distributionId String
    ID of the multi-tenant distribution.
    domains List<Property Map>
    Set of domains associated with the distribution tenant.
    enabled Boolean
    Whether the distribution tenant is enabled to serve traffic. Defaults to true.
    etag String
    Current version of the distribution tenant.
    managedCertificateRequest Property Map
    Managed certificate request for CloudFront managed ACM certificate (maximum one).
    name String
    Name of the distribution tenant.
    parameters List<Property Map>
    Set of parameter values for the distribution tenant.
    status String
    Current status of the distribution tenant.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
    timeouts Property Map
    waitForDeployment Boolean
    If enabled, the resource will wait for the distribution tenant status to change from InProgress to Deployed. Setting this to false will skip the process. Default: true.

    Supporting Types

    DistributionTenantCustomizations, DistributionTenantCustomizationsArgs

    Certificate DistributionTenantCustomizationsCertificate
    Certificate configuration for the tenant (maximum one).
    GeoRestriction DistributionTenantCustomizationsGeoRestriction
    Geographic restrictions configuration for the tenant (maximum one).
    WebAcl DistributionTenantCustomizationsWebAcl
    Web ACL configuration for the tenant (maximum one).
    Certificate DistributionTenantCustomizationsCertificate
    Certificate configuration for the tenant (maximum one).
    GeoRestriction DistributionTenantCustomizationsGeoRestriction
    Geographic restrictions configuration for the tenant (maximum one).
    WebAcl DistributionTenantCustomizationsWebAcl
    Web ACL configuration for the tenant (maximum one).
    certificate DistributionTenantCustomizationsCertificate
    Certificate configuration for the tenant (maximum one).
    geoRestriction DistributionTenantCustomizationsGeoRestriction
    Geographic restrictions configuration for the tenant (maximum one).
    webAcl DistributionTenantCustomizationsWebAcl
    Web ACL configuration for the tenant (maximum one).
    certificate DistributionTenantCustomizationsCertificate
    Certificate configuration for the tenant (maximum one).
    geoRestriction DistributionTenantCustomizationsGeoRestriction
    Geographic restrictions configuration for the tenant (maximum one).
    webAcl DistributionTenantCustomizationsWebAcl
    Web ACL configuration for the tenant (maximum one).
    certificate DistributionTenantCustomizationsCertificate
    Certificate configuration for the tenant (maximum one).
    geo_restriction DistributionTenantCustomizationsGeoRestriction
    Geographic restrictions configuration for the tenant (maximum one).
    web_acl DistributionTenantCustomizationsWebAcl
    Web ACL configuration for the tenant (maximum one).
    certificate Property Map
    Certificate configuration for the tenant (maximum one).
    geoRestriction Property Map
    Geographic restrictions configuration for the tenant (maximum one).
    webAcl Property Map
    Web ACL configuration for the tenant (maximum one).

    DistributionTenantCustomizationsCertificate, DistributionTenantCustomizationsCertificateArgs

    Arn string
    ARN of the distribution tenant.
    Arn string
    ARN of the distribution tenant.
    arn String
    ARN of the distribution tenant.
    arn string
    ARN of the distribution tenant.
    arn str
    ARN of the distribution tenant.
    arn String
    ARN of the distribution tenant.

    DistributionTenantCustomizationsGeoRestriction, DistributionTenantCustomizationsGeoRestrictionArgs

    Locations List<string>
    Set of ISO 3166-1-alpha-2 country codes for the restriction. Required if restriction_type is whitelist or blacklist.
    RestrictionType string
    Method to restrict distribution by country: none, whitelist, or blacklist.
    Locations []string
    Set of ISO 3166-1-alpha-2 country codes for the restriction. Required if restriction_type is whitelist or blacklist.
    RestrictionType string
    Method to restrict distribution by country: none, whitelist, or blacklist.
    locations List<String>
    Set of ISO 3166-1-alpha-2 country codes for the restriction. Required if restriction_type is whitelist or blacklist.
    restrictionType String
    Method to restrict distribution by country: none, whitelist, or blacklist.
    locations string[]
    Set of ISO 3166-1-alpha-2 country codes for the restriction. Required if restriction_type is whitelist or blacklist.
    restrictionType string
    Method to restrict distribution by country: none, whitelist, or blacklist.
    locations Sequence[str]
    Set of ISO 3166-1-alpha-2 country codes for the restriction. Required if restriction_type is whitelist or blacklist.
    restriction_type str
    Method to restrict distribution by country: none, whitelist, or blacklist.
    locations List<String>
    Set of ISO 3166-1-alpha-2 country codes for the restriction. Required if restriction_type is whitelist or blacklist.
    restrictionType String
    Method to restrict distribution by country: none, whitelist, or blacklist.

    DistributionTenantCustomizationsWebAcl, DistributionTenantCustomizationsWebAclArgs

    Action string
    Action to take for the web ACL. Valid values: allow, block.
    Arn string
    ARN of the distribution tenant.
    Action string
    Action to take for the web ACL. Valid values: allow, block.
    Arn string
    ARN of the distribution tenant.
    action String
    Action to take for the web ACL. Valid values: allow, block.
    arn String
    ARN of the distribution tenant.
    action string
    Action to take for the web ACL. Valid values: allow, block.
    arn string
    ARN of the distribution tenant.
    action str
    Action to take for the web ACL. Valid values: allow, block.
    arn str
    ARN of the distribution tenant.
    action String
    Action to take for the web ACL. Valid values: allow, block.
    arn String
    ARN of the distribution tenant.

    DistributionTenantDomain, DistributionTenantDomainArgs

    Domain string
    Set of domains associated with the distribution tenant.
    Status string
    Current status of the distribution tenant.
    Domain string
    Set of domains associated with the distribution tenant.
    Status string
    Current status of the distribution tenant.
    domain String
    Set of domains associated with the distribution tenant.
    status String
    Current status of the distribution tenant.
    domain string
    Set of domains associated with the distribution tenant.
    status string
    Current status of the distribution tenant.
    domain str
    Set of domains associated with the distribution tenant.
    status str
    Current status of the distribution tenant.
    domain String
    Set of domains associated with the distribution tenant.
    status String
    Current status of the distribution tenant.

    DistributionTenantManagedCertificateRequest, DistributionTenantManagedCertificateRequestArgs

    CertificateTransparencyLoggingPreference string
    Certificate transparency logging preference. Valid values: enabled, disabled.
    PrimaryDomainName string
    Primary domain name for the certificate.
    ValidationTokenHost string
    Host for validation token. Valid values: cloudfront, domain.
    CertificateTransparencyLoggingPreference string
    Certificate transparency logging preference. Valid values: enabled, disabled.
    PrimaryDomainName string
    Primary domain name for the certificate.
    ValidationTokenHost string
    Host for validation token. Valid values: cloudfront, domain.
    certificateTransparencyLoggingPreference String
    Certificate transparency logging preference. Valid values: enabled, disabled.
    primaryDomainName String
    Primary domain name for the certificate.
    validationTokenHost String
    Host for validation token. Valid values: cloudfront, domain.
    certificateTransparencyLoggingPreference string
    Certificate transparency logging preference. Valid values: enabled, disabled.
    primaryDomainName string
    Primary domain name for the certificate.
    validationTokenHost string
    Host for validation token. Valid values: cloudfront, domain.
    certificate_transparency_logging_preference str
    Certificate transparency logging preference. Valid values: enabled, disabled.
    primary_domain_name str
    Primary domain name for the certificate.
    validation_token_host str
    Host for validation token. Valid values: cloudfront, domain.
    certificateTransparencyLoggingPreference String
    Certificate transparency logging preference. Valid values: enabled, disabled.
    primaryDomainName String
    Primary domain name for the certificate.
    validationTokenHost String
    Host for validation token. Valid values: cloudfront, domain.

    DistributionTenantParameter, DistributionTenantParameterArgs

    Name string
    Name of the distribution tenant.
    Value string
    Value of the parameter.
    Name string
    Name of the distribution tenant.
    Value string
    Value of the parameter.
    name String
    Name of the distribution tenant.
    value String
    Value of the parameter.
    name string
    Name of the distribution tenant.
    value string
    Value of the parameter.
    name str
    Name of the distribution tenant.
    value str
    Value of the parameter.
    name String
    Name of the distribution tenant.
    value String
    Value of the parameter.

    DistributionTenantTimeouts, DistributionTenantTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import CloudFront Distribution Tenants using the id. For example:

    $ pulumi import aws:cloudfront/distributionTenant:DistributionTenant example TENANT123EXAMPLE
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v7.16.0 published on Friday, Jan 9, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate