Try AWS Native preview for resources not in the classic version.
aws.globalaccelerator.CustomRoutingAccelerator
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Creates a Global Accelerator custom routing accelerator.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.globalaccelerator.CustomRoutingAccelerator("example", {
name: "Example",
ipAddressType: "IPV4",
ipAddresses: ["1.2.3.4"],
enabled: true,
attributes: {
flowLogsEnabled: true,
flowLogsS3Bucket: "example-bucket",
flowLogsS3Prefix: "flow-logs/",
},
});
import pulumi
import pulumi_aws as aws
example = aws.globalaccelerator.CustomRoutingAccelerator("example",
name="Example",
ip_address_type="IPV4",
ip_addresses=["1.2.3.4"],
enabled=True,
attributes={
"flowLogsEnabled": True,
"flowLogsS3Bucket": "example-bucket",
"flowLogsS3Prefix": "flow-logs/",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/globalaccelerator"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := globalaccelerator.NewCustomRoutingAccelerator(ctx, "example", &globalaccelerator.CustomRoutingAcceleratorArgs{
Name: pulumi.String("Example"),
IpAddressType: pulumi.String("IPV4"),
IpAddresses: pulumi.StringArray{
pulumi.String("1.2.3.4"),
},
Enabled: pulumi.Bool(true),
Attributes: &globalaccelerator.CustomRoutingAcceleratorAttributesArgs{
FlowLogsEnabled: pulumi.Bool(true),
FlowLogsS3Bucket: pulumi.String("example-bucket"),
FlowLogsS3Prefix: pulumi.String("flow-logs/"),
},
})
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.GlobalAccelerator.CustomRoutingAccelerator("example", new()
{
Name = "Example",
IpAddressType = "IPV4",
IpAddresses = new[]
{
"1.2.3.4",
},
Enabled = true,
Attributes = new Aws.GlobalAccelerator.Inputs.CustomRoutingAcceleratorAttributesArgs
{
FlowLogsEnabled = true,
FlowLogsS3Bucket = "example-bucket",
FlowLogsS3Prefix = "flow-logs/",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.globalaccelerator.CustomRoutingAccelerator;
import com.pulumi.aws.globalaccelerator.CustomRoutingAcceleratorArgs;
import com.pulumi.aws.globalaccelerator.inputs.CustomRoutingAcceleratorAttributesArgs;
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 CustomRoutingAccelerator("example", CustomRoutingAcceleratorArgs.builder()
.name("Example")
.ipAddressType("IPV4")
.ipAddresses("1.2.3.4")
.enabled(true)
.attributes(CustomRoutingAcceleratorAttributesArgs.builder()
.flowLogsEnabled(true)
.flowLogsS3Bucket("example-bucket")
.flowLogsS3Prefix("flow-logs/")
.build())
.build());
}
}
resources:
example:
type: aws:globalaccelerator:CustomRoutingAccelerator
properties:
name: Example
ipAddressType: IPV4
ipAddresses:
- 1.2.3.4
enabled: true
attributes:
flowLogsEnabled: true
flowLogsS3Bucket: example-bucket
flowLogsS3Prefix: flow-logs/
Create CustomRoutingAccelerator Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomRoutingAccelerator(name: string, args?: CustomRoutingAcceleratorArgs, opts?: CustomResourceOptions);
@overload
def CustomRoutingAccelerator(resource_name: str,
args: Optional[CustomRoutingAcceleratorArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def CustomRoutingAccelerator(resource_name: str,
opts: Optional[ResourceOptions] = None,
attributes: Optional[CustomRoutingAcceleratorAttributesArgs] = None,
enabled: Optional[bool] = None,
ip_address_type: Optional[str] = None,
ip_addresses: Optional[Sequence[str]] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewCustomRoutingAccelerator(ctx *Context, name string, args *CustomRoutingAcceleratorArgs, opts ...ResourceOption) (*CustomRoutingAccelerator, error)
public CustomRoutingAccelerator(string name, CustomRoutingAcceleratorArgs? args = null, CustomResourceOptions? opts = null)
public CustomRoutingAccelerator(String name, CustomRoutingAcceleratorArgs args)
public CustomRoutingAccelerator(String name, CustomRoutingAcceleratorArgs args, CustomResourceOptions options)
type: aws:globalaccelerator:CustomRoutingAccelerator
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 CustomRoutingAcceleratorArgs
- 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 CustomRoutingAcceleratorArgs
- 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 CustomRoutingAcceleratorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomRoutingAcceleratorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomRoutingAcceleratorArgs
- 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 customRoutingAcceleratorResource = new Aws.GlobalAccelerator.CustomRoutingAccelerator("customRoutingAcceleratorResource", new()
{
Attributes = new Aws.GlobalAccelerator.Inputs.CustomRoutingAcceleratorAttributesArgs
{
FlowLogsEnabled = false,
FlowLogsS3Bucket = "string",
FlowLogsS3Prefix = "string",
},
Enabled = false,
IpAddressType = "string",
IpAddresses = new[]
{
"string",
},
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := globalaccelerator.NewCustomRoutingAccelerator(ctx, "customRoutingAcceleratorResource", &globalaccelerator.CustomRoutingAcceleratorArgs{
Attributes: &globalaccelerator.CustomRoutingAcceleratorAttributesArgs{
FlowLogsEnabled: pulumi.Bool(false),
FlowLogsS3Bucket: pulumi.String("string"),
FlowLogsS3Prefix: pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
IpAddressType: pulumi.String("string"),
IpAddresses: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var customRoutingAcceleratorResource = new CustomRoutingAccelerator("customRoutingAcceleratorResource", CustomRoutingAcceleratorArgs.builder()
.attributes(CustomRoutingAcceleratorAttributesArgs.builder()
.flowLogsEnabled(false)
.flowLogsS3Bucket("string")
.flowLogsS3Prefix("string")
.build())
.enabled(false)
.ipAddressType("string")
.ipAddresses("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
custom_routing_accelerator_resource = aws.globalaccelerator.CustomRoutingAccelerator("customRoutingAcceleratorResource",
attributes={
"flowLogsEnabled": False,
"flowLogsS3Bucket": "string",
"flowLogsS3Prefix": "string",
},
enabled=False,
ip_address_type="string",
ip_addresses=["string"],
name="string",
tags={
"string": "string",
})
const customRoutingAcceleratorResource = new aws.globalaccelerator.CustomRoutingAccelerator("customRoutingAcceleratorResource", {
attributes: {
flowLogsEnabled: false,
flowLogsS3Bucket: "string",
flowLogsS3Prefix: "string",
},
enabled: false,
ipAddressType: "string",
ipAddresses: ["string"],
name: "string",
tags: {
string: "string",
},
});
type: aws:globalaccelerator:CustomRoutingAccelerator
properties:
attributes:
flowLogsEnabled: false
flowLogsS3Bucket: string
flowLogsS3Prefix: string
enabled: false
ipAddressType: string
ipAddresses:
- string
name: string
tags:
string: string
CustomRoutingAccelerator Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The CustomRoutingAccelerator resource accepts the following input properties:
- Attributes
Custom
Routing Accelerator Attributes - The attributes of the accelerator. Fields documented below.
- Enabled bool
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - Ip
Address stringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - Ip
Addresses List<string> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- Name string
- The name of a custom routing accelerator.
- 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.
- Attributes
Custom
Routing Accelerator Attributes Args - The attributes of the accelerator. Fields documented below.
- Enabled bool
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - Ip
Address stringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - Ip
Addresses []string - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- Name string
- The name of a custom routing accelerator.
- 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.
- attributes
Custom
Routing Accelerator Attributes - The attributes of the accelerator. Fields documented below.
- enabled Boolean
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - ip
Address StringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip
Addresses List<String> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- name String
- The name of a custom routing accelerator.
- 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.
- attributes
Custom
Routing Accelerator Attributes - The attributes of the accelerator. Fields documented below.
- enabled boolean
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - ip
Address stringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip
Addresses string[] - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- name string
- The name of a custom routing accelerator.
- {[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.
- attributes
Custom
Routing Accelerator Attributes Args - The attributes of the accelerator. Fields documented below.
- enabled bool
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - ip_
address_ strtype - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip_
addresses Sequence[str] - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- name str
- The name of a custom routing accelerator.
- 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.
- attributes Property Map
- The attributes of the accelerator. Fields documented below.
- enabled Boolean
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - ip
Address StringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip
Addresses List<String> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- name String
- The name of a custom routing accelerator.
- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomRoutingAccelerator resource produces the following output properties:
- Dns
Name string - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - Hosted
Zone stringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Sets List<CustomRouting Accelerator Ip Set> - IP address set associated with the accelerator.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Dns
Name string - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - Hosted
Zone stringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Sets []CustomRouting Accelerator Ip Set - IP address set associated with the accelerator.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- dns
Name String - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - hosted
Zone StringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Sets List<CustomRouting Accelerator Ip Set> - IP address set associated with the accelerator.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- dns
Name string - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - hosted
Zone stringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Sets CustomRouting Accelerator Ip Set[] - IP address set associated with the accelerator.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- dns_
name str - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - hosted_
zone_ strid - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
sets Sequence[CustomRouting Accelerator Ip Set] - IP address set associated with the accelerator.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- dns
Name String - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - hosted
Zone StringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Sets List<Property Map> - IP address set associated with the accelerator.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing CustomRoutingAccelerator Resource
Get an existing CustomRoutingAccelerator 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?: CustomRoutingAcceleratorState, opts?: CustomResourceOptions): CustomRoutingAccelerator
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attributes: Optional[CustomRoutingAcceleratorAttributesArgs] = None,
dns_name: Optional[str] = None,
enabled: Optional[bool] = None,
hosted_zone_id: Optional[str] = None,
ip_address_type: Optional[str] = None,
ip_addresses: Optional[Sequence[str]] = None,
ip_sets: Optional[Sequence[CustomRoutingAcceleratorIpSetArgs]] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> CustomRoutingAccelerator
func GetCustomRoutingAccelerator(ctx *Context, name string, id IDInput, state *CustomRoutingAcceleratorState, opts ...ResourceOption) (*CustomRoutingAccelerator, error)
public static CustomRoutingAccelerator Get(string name, Input<string> id, CustomRoutingAcceleratorState? state, CustomResourceOptions? opts = null)
public static CustomRoutingAccelerator get(String name, Output<String> id, CustomRoutingAcceleratorState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Attributes
Custom
Routing Accelerator Attributes - The attributes of the accelerator. Fields documented below.
- Dns
Name string - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - Enabled bool
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - Hosted
Zone stringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- Ip
Address stringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - Ip
Addresses List<string> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- Ip
Sets List<CustomRouting Accelerator Ip Set> - IP address set associated with the accelerator.
- Name string
- The name of a custom routing accelerator.
- 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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Attributes
Custom
Routing Accelerator Attributes Args - The attributes of the accelerator. Fields documented below.
- Dns
Name string - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - Enabled bool
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - Hosted
Zone stringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- Ip
Address stringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - Ip
Addresses []string - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- Ip
Sets []CustomRouting Accelerator Ip Set Args - IP address set associated with the accelerator.
- Name string
- The name of a custom routing accelerator.
- 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- attributes
Custom
Routing Accelerator Attributes - The attributes of the accelerator. Fields documented below.
- dns
Name String - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - enabled Boolean
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - hosted
Zone StringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- ip
Address StringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip
Addresses List<String> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip
Sets List<CustomRouting Accelerator Ip Set> - IP address set associated with the accelerator.
- name String
- The name of a custom routing accelerator.
- 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- attributes
Custom
Routing Accelerator Attributes - The attributes of the accelerator. Fields documented below.
- dns
Name string - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - enabled boolean
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - hosted
Zone stringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- ip
Address stringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip
Addresses string[] - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip
Sets CustomRouting Accelerator Ip Set[] - IP address set associated with the accelerator.
- name string
- The name of a custom routing accelerator.
- {[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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- attributes
Custom
Routing Accelerator Attributes Args - The attributes of the accelerator. Fields documented below.
- dns_
name str - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - enabled bool
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - hosted_
zone_ strid - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- ip_
address_ strtype - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip_
addresses Sequence[str] - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip_
sets Sequence[CustomRouting Accelerator Ip Set Args] - IP address set associated with the accelerator.
- name str
- The name of a custom routing accelerator.
- 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- attributes Property Map
- The attributes of the accelerator. Fields documented below.
- dns
Name String - The DNS name of the accelerator. For example,
a5d53ff5ee6bca4ce.awsglobalaccelerator.com
. - enabled Boolean
- Indicates whether the accelerator is enabled. Defaults to
true
. Valid values:true
,false
. - hosted
Zone StringId - The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
Z2BJ6XQ5FK7U4H
.
- The Global Accelerator Route 53 zone ID that can be used to
route an Alias Resource Record Set to the Global Accelerator. This attribute
is simply an alias for the zone ID
- ip
Address StringType - The IP address type that an accelerator supports. For a custom routing accelerator, the value must be
"IPV4"
. - ip
Addresses List<String> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip
Sets List<Property Map> - IP address set associated with the accelerator.
- name String
- The name of a custom routing accelerator.
- 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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
CustomRoutingAcceleratorAttributes, CustomRoutingAcceleratorAttributesArgs
- Flow
Logs boolEnabled - Indicates whether flow logs are enabled. Defaults to
false
. Valid values:true
,false
. - Flow
Logs stringS3Bucket - The name of the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
. - Flow
Logs stringS3Prefix - The prefix for the location in the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
.
- Flow
Logs boolEnabled - Indicates whether flow logs are enabled. Defaults to
false
. Valid values:true
,false
. - Flow
Logs stringS3Bucket - The name of the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
. - Flow
Logs stringS3Prefix - The prefix for the location in the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
.
- flow
Logs BooleanEnabled - Indicates whether flow logs are enabled. Defaults to
false
. Valid values:true
,false
. - flow
Logs StringS3Bucket - The name of the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
. - flow
Logs StringS3Prefix - The prefix for the location in the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
.
- flow
Logs booleanEnabled - Indicates whether flow logs are enabled. Defaults to
false
. Valid values:true
,false
. - flow
Logs stringS3Bucket - The name of the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
. - flow
Logs stringS3Prefix - The prefix for the location in the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
.
- flow_
logs_ boolenabled - Indicates whether flow logs are enabled. Defaults to
false
. Valid values:true
,false
. - flow_
logs_ strs3_ bucket - The name of the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
. - flow_
logs_ strs3_ prefix - The prefix for the location in the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
.
- flow
Logs BooleanEnabled - Indicates whether flow logs are enabled. Defaults to
false
. Valid values:true
,false
. - flow
Logs StringS3Bucket - The name of the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
. - flow
Logs StringS3Prefix - The prefix for the location in the Amazon S3 bucket for the flow logs. Required if
flow_logs_enabled
istrue
.
CustomRoutingAcceleratorIpSet, CustomRoutingAcceleratorIpSetArgs
- Ip
Addresses List<string> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- Ip
Family string - The type of IP addresses included in this IP set.
- Ip
Addresses []string - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- Ip
Family string - The type of IP addresses included in this IP set.
- ip
Addresses List<String> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip
Family String - The type of IP addresses included in this IP set.
- ip
Addresses string[] - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip
Family string - The type of IP addresses included in this IP set.
- ip_
addresses Sequence[str] - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip_
family str - The type of IP addresses included in this IP set.
- ip
Addresses List<String> - The IP addresses to use for BYOIP accelerators. If not specified, the service assigns IP addresses. Valid values: 1 or 2 IPv4 addresses.
- ip
Family String - The type of IP addresses included in this IP set.
Import
Using pulumi import
, import Global Accelerator custom routing accelerators using the arn
. For example:
$ pulumi import aws:globalaccelerator/customRoutingAccelerator:CustomRoutingAccelerator example arn:aws:globalaccelerator::111111111111:accelerator/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
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.
Try AWS Native preview for resources not in the classic version.