1. Packages
  2. AWS
  3. API Docs
  4. cloudfront
  5. ConnectionGroup
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 Connection Group.

    For information about CloudFront Connection Groups, see the AWS CloudFormation Documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.cloudfront.ConnectionGroup("example", {
        name: "example",
        enabled: true,
        ipv6Enabled: true,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.cloudfront.ConnectionGroup("example",
        name="example",
        enabled=True,
        ipv6_enabled=True)
    
    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.NewConnectionGroup(ctx, "example", &cloudfront.ConnectionGroupArgs{
    			Name:        pulumi.String("example"),
    			Enabled:     pulumi.Bool(true),
    			Ipv6Enabled: pulumi.Bool(true),
    		})
    		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.ConnectionGroup("example", new()
        {
            Name = "example",
            Enabled = true,
            Ipv6Enabled = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.cloudfront.ConnectionGroup;
    import com.pulumi.aws.cloudfront.ConnectionGroupArgs;
    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 ConnectionGroup("example", ConnectionGroupArgs.builder()
                .name("example")
                .enabled(true)
                .ipv6Enabled(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:cloudfront:ConnectionGroup
        properties:
          name: example
          enabled: true
          ipv6Enabled: true
    

    Create ConnectionGroup Resource

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

    Constructor syntax

    new ConnectionGroup(name: string, args?: ConnectionGroupArgs, opts?: CustomResourceOptions);
    @overload
    def ConnectionGroup(resource_name: str,
                        args: Optional[ConnectionGroupArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ConnectionGroup(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        anycast_ip_list_id: Optional[str] = None,
                        enabled: Optional[bool] = None,
                        ipv6_enabled: Optional[bool] = None,
                        name: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        timeouts: Optional[ConnectionGroupTimeoutsArgs] = None,
                        wait_for_deployment: Optional[bool] = None)
    func NewConnectionGroup(ctx *Context, name string, args *ConnectionGroupArgs, opts ...ResourceOption) (*ConnectionGroup, error)
    public ConnectionGroup(string name, ConnectionGroupArgs? args = null, CustomResourceOptions? opts = null)
    public ConnectionGroup(String name, ConnectionGroupArgs args)
    public ConnectionGroup(String name, ConnectionGroupArgs args, CustomResourceOptions options)
    
    type: aws:cloudfront:ConnectionGroup
    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 ConnectionGroupArgs
    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 ConnectionGroupArgs
    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 ConnectionGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectionGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectionGroupArgs
    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 connectionGroupResource = new Aws.CloudFront.ConnectionGroup("connectionGroupResource", new()
    {
        AnycastIpListId = "string",
        Enabled = false,
        Ipv6Enabled = false,
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.CloudFront.Inputs.ConnectionGroupTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        WaitForDeployment = false,
    });
    
    example, err := cloudfront.NewConnectionGroup(ctx, "connectionGroupResource", &cloudfront.ConnectionGroupArgs{
    	AnycastIpListId: pulumi.String("string"),
    	Enabled:         pulumi.Bool(false),
    	Ipv6Enabled:     pulumi.Bool(false),
    	Name:            pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &cloudfront.ConnectionGroupTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	WaitForDeployment: pulumi.Bool(false),
    })
    
    var connectionGroupResource = new ConnectionGroup("connectionGroupResource", ConnectionGroupArgs.builder()
        .anycastIpListId("string")
        .enabled(false)
        .ipv6Enabled(false)
        .name("string")
        .tags(Map.of("string", "string"))
        .timeouts(ConnectionGroupTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .waitForDeployment(false)
        .build());
    
    connection_group_resource = aws.cloudfront.ConnectionGroup("connectionGroupResource",
        anycast_ip_list_id="string",
        enabled=False,
        ipv6_enabled=False,
        name="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        wait_for_deployment=False)
    
    const connectionGroupResource = new aws.cloudfront.ConnectionGroup("connectionGroupResource", {
        anycastIpListId: "string",
        enabled: false,
        ipv6Enabled: false,
        name: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        waitForDeployment: false,
    });
    
    type: aws:cloudfront:ConnectionGroup
    properties:
        anycastIpListId: string
        enabled: false
        ipv6Enabled: false
        name: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
        waitForDeployment: false
    

    ConnectionGroup 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 ConnectionGroup resource accepts the following input properties:

    AnycastIpListId string
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    Enabled bool
    Whether the connection group is enabled. Default is true.
    Ipv6Enabled bool
    Whether IPv6 is enabled for the connection group. Default is false.
    Name string
    Name of the connection group.
    Tags Dictionary<string, string>
    A 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 ConnectionGroupTimeouts
    WaitForDeployment bool
    AnycastIpListId string
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    Enabled bool
    Whether the connection group is enabled. Default is true.
    Ipv6Enabled bool
    Whether IPv6 is enabled for the connection group. Default is false.
    Name string
    Name of the connection group.
    Tags map[string]string
    A 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 ConnectionGroupTimeoutsArgs
    WaitForDeployment bool
    anycastIpListId String
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    enabled Boolean
    Whether the connection group is enabled. Default is true.
    ipv6Enabled Boolean
    Whether IPv6 is enabled for the connection group. Default is false.
    name String
    Name of the connection group.
    tags Map<String,String>
    A 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 ConnectionGroupTimeouts
    waitForDeployment Boolean
    anycastIpListId string
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    enabled boolean
    Whether the connection group is enabled. Default is true.
    ipv6Enabled boolean
    Whether IPv6 is enabled for the connection group. Default is false.
    name string
    Name of the connection group.
    tags {[key: string]: string}
    A 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 ConnectionGroupTimeouts
    waitForDeployment boolean
    anycast_ip_list_id str
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    enabled bool
    Whether the connection group is enabled. Default is true.
    ipv6_enabled bool
    Whether IPv6 is enabled for the connection group. Default is false.
    name str
    Name of the connection group.
    tags Mapping[str, str]
    A 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 ConnectionGroupTimeoutsArgs
    wait_for_deployment bool
    anycastIpListId String
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    enabled Boolean
    Whether the connection group is enabled. Default is true.
    ipv6Enabled Boolean
    Whether IPv6 is enabled for the connection group. Default is false.
    name String
    Name of the connection group.
    tags Map<String>
    A 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

    Outputs

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

    Arn string
    ARN of the connection group.
    Etag string
    Current version of the connection group.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDefault bool
    Whether the connection group is the default connection group for the distribution tenants.
    LastModifiedTime string
    Date and time when the connection group was last modified.
    RoutingEndpoint string
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    Status string
    Current status of the connection group.
    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 connection group.
    Etag string
    Current version of the connection group.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDefault bool
    Whether the connection group is the default connection group for the distribution tenants.
    LastModifiedTime string
    Date and time when the connection group was last modified.
    RoutingEndpoint string
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    Status string
    Current status of the connection group.
    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 connection group.
    etag String
    Current version of the connection group.
    id String
    The provider-assigned unique ID for this managed resource.
    isDefault Boolean
    Whether the connection group is the default connection group for the distribution tenants.
    lastModifiedTime String
    Date and time when the connection group was last modified.
    routingEndpoint String
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status String
    Current status of the connection group.
    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 connection group.
    etag string
    Current version of the connection group.
    id string
    The provider-assigned unique ID for this managed resource.
    isDefault boolean
    Whether the connection group is the default connection group for the distribution tenants.
    lastModifiedTime string
    Date and time when the connection group was last modified.
    routingEndpoint string
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status string
    Current status of the connection group.
    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 connection group.
    etag str
    Current version of the connection group.
    id str
    The provider-assigned unique ID for this managed resource.
    is_default bool
    Whether the connection group is the default connection group for the distribution tenants.
    last_modified_time str
    Date and time when the connection group was last modified.
    routing_endpoint str
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status str
    Current status of the connection group.
    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 connection group.
    etag String
    Current version of the connection group.
    id String
    The provider-assigned unique ID for this managed resource.
    isDefault Boolean
    Whether the connection group is the default connection group for the distribution tenants.
    lastModifiedTime String
    Date and time when the connection group was last modified.
    routingEndpoint String
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status String
    Current status of the connection group.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Look up Existing ConnectionGroup Resource

    Get an existing ConnectionGroup 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?: ConnectionGroupState, opts?: CustomResourceOptions): ConnectionGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            anycast_ip_list_id: Optional[str] = None,
            arn: Optional[str] = None,
            enabled: Optional[bool] = None,
            etag: Optional[str] = None,
            ipv6_enabled: Optional[bool] = None,
            is_default: Optional[bool] = None,
            last_modified_time: Optional[str] = None,
            name: Optional[str] = None,
            routing_endpoint: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[ConnectionGroupTimeoutsArgs] = None,
            wait_for_deployment: Optional[bool] = None) -> ConnectionGroup
    func GetConnectionGroup(ctx *Context, name string, id IDInput, state *ConnectionGroupState, opts ...ResourceOption) (*ConnectionGroup, error)
    public static ConnectionGroup Get(string name, Input<string> id, ConnectionGroupState? state, CustomResourceOptions? opts = null)
    public static ConnectionGroup get(String name, Output<String> id, ConnectionGroupState state, CustomResourceOptions options)
    resources:  _:    type: aws:cloudfront:ConnectionGroup    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:
    AnycastIpListId string
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    Arn string
    ARN of the connection group.
    Enabled bool
    Whether the connection group is enabled. Default is true.
    Etag string
    Current version of the connection group.
    Ipv6Enabled bool
    Whether IPv6 is enabled for the connection group. Default is false.
    IsDefault bool
    Whether the connection group is the default connection group for the distribution tenants.
    LastModifiedTime string
    Date and time when the connection group was last modified.
    Name string
    Name of the connection group.
    RoutingEndpoint string
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    Status string
    Current status of the connection group.
    Tags Dictionary<string, string>
    A 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 ConnectionGroupTimeouts
    WaitForDeployment bool
    AnycastIpListId string
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    Arn string
    ARN of the connection group.
    Enabled bool
    Whether the connection group is enabled. Default is true.
    Etag string
    Current version of the connection group.
    Ipv6Enabled bool
    Whether IPv6 is enabled for the connection group. Default is false.
    IsDefault bool
    Whether the connection group is the default connection group for the distribution tenants.
    LastModifiedTime string
    Date and time when the connection group was last modified.
    Name string
    Name of the connection group.
    RoutingEndpoint string
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    Status string
    Current status of the connection group.
    Tags map[string]string
    A 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 ConnectionGroupTimeoutsArgs
    WaitForDeployment bool
    anycastIpListId String
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    arn String
    ARN of the connection group.
    enabled Boolean
    Whether the connection group is enabled. Default is true.
    etag String
    Current version of the connection group.
    ipv6Enabled Boolean
    Whether IPv6 is enabled for the connection group. Default is false.
    isDefault Boolean
    Whether the connection group is the default connection group for the distribution tenants.
    lastModifiedTime String
    Date and time when the connection group was last modified.
    name String
    Name of the connection group.
    routingEndpoint String
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status String
    Current status of the connection group.
    tags Map<String,String>
    A 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 ConnectionGroupTimeouts
    waitForDeployment Boolean
    anycastIpListId string
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    arn string
    ARN of the connection group.
    enabled boolean
    Whether the connection group is enabled. Default is true.
    etag string
    Current version of the connection group.
    ipv6Enabled boolean
    Whether IPv6 is enabled for the connection group. Default is false.
    isDefault boolean
    Whether the connection group is the default connection group for the distribution tenants.
    lastModifiedTime string
    Date and time when the connection group was last modified.
    name string
    Name of the connection group.
    routingEndpoint string
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status string
    Current status of the connection group.
    tags {[key: string]: string}
    A 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 ConnectionGroupTimeouts
    waitForDeployment boolean
    anycast_ip_list_id str
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    arn str
    ARN of the connection group.
    enabled bool
    Whether the connection group is enabled. Default is true.
    etag str
    Current version of the connection group.
    ipv6_enabled bool
    Whether IPv6 is enabled for the connection group. Default is false.
    is_default bool
    Whether the connection group is the default connection group for the distribution tenants.
    last_modified_time str
    Date and time when the connection group was last modified.
    name str
    Name of the connection group.
    routing_endpoint str
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status str
    Current status of the connection group.
    tags Mapping[str, str]
    A 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 ConnectionGroupTimeoutsArgs
    wait_for_deployment bool
    anycastIpListId String
    ID of the associated Anycast IP List. ipv6_enabled must not be set to true in order to set this argument
    arn String
    ARN of the connection group.
    enabled Boolean
    Whether the connection group is enabled. Default is true.
    etag String
    Current version of the connection group.
    ipv6Enabled Boolean
    Whether IPv6 is enabled for the connection group. Default is false.
    isDefault Boolean
    Whether the connection group is the default connection group for the distribution tenants.
    lastModifiedTime String
    Date and time when the connection group was last modified.
    name String
    Name of the connection group.
    routingEndpoint String
    The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.
    status String
    Current status of the connection group.
    tags Map<String>
    A 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

    Supporting Types

    ConnectionGroupTimeouts, ConnectionGroupTimeoutsArgs

    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.
    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). Default is 90 minutes.

    Import

    Using pulumi import, import CloudFront Connection Groups using the id. For example:

    $ pulumi import aws:cloudfront/connectionGroup:ConnectionGroup example CGROUP123EXAMPLE
    

    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