package globalaccelerator
import "github.com/aws/aws-sdk-go-v2/service/globalaccelerator"
Package globalaccelerator provides the API client, operations, and parameter types for AWS Global Accelerator.
AWS Global Accelerator This is the AWS Global Accelerator API Reference. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the AWS Global Accelerator Developer Guide (https://docs.aws.amazon.com/global-accelerator/latest/dg/Welcome.html). AWS Global Accelerator is a service in which you create accelerators to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits.
* By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the AWS global network.
* For other scenarios, you might choose a custom routing accelerator. With a custom routing accelerator, you can use application logic to directly map one or more users to a specific endpoint among many endpoints.
Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators. By default, Global Accelerator provides you with two static IP addresses that you associate with your accelerator. With a standard accelerator, instead of using the IP addresses that Global Accelerator provides, you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator. The static IP addresses are anycast from the AWS edge network. For a standard accelerator, they distribute incoming application traffic across multiple endpoint resources in multiple AWS Regions, which increases the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses that are located in one AWS Region or multiple Regions. For custom routing accelerators, you map traffic that arrives to the static IP addresses to specific Amazon EC2 servers in endpoints that are virtual private cloud (VPC) subnets. The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Tag-based policies (https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html). For standard accelerators, Global Accelerator uses the AWS global network to route traffic to the optimal regional endpoint based on health, client location, and policies that you configure. The service reacts instantly to changes in health or configuration to ensure that internet traffic from clients is always directed to healthy endpoints. For a list of the AWS Regions where Global Accelerator and other services are currently supported, see the AWS Region Table (https://docs.aws.amazon.com/about-aws/global-infrastructure/regional-product-services/). AWS Global Accelerator includes the following components: Static IP addresses Global Accelerator provides you with a set of two static IP addresses that are anycast from the AWS edge network. If you bring your own IP address range to AWS (BYOIP) to use with a standard accelerator, you can instead assign IP addresses from your own pool to use with your accelerator. For more information, see Bring your own IP addresses (BYOIP) in AWS Global Accelerator (https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html). The IP addresses serve as single fixed entry points for your clients. If you already have Elastic Load Balancing load balancers, Amazon EC2 instances, or Elastic IP address resources set up for your applications, you can easily add those to a standard accelerator in Global Accelerator. This allows Global Accelerator to use static IP addresses to access the resources. The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to delete an accelerator. For more information, see Tag-based policies (https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html). Accelerator An accelerator directs traffic to endpoints over the AWS global network to improve the performance of your internet applications. Each accelerator includes one or more listeners. There are two types of accelerators:
* A standard accelerator directs traffic to the optimal AWS endpoint based on several factors, including the user’s location, the health of the endpoint, and the endpoint weights that you configure. This improves the availability and performance of your applications. Endpoints can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses.
* A custom routing accelerator directs traffic to one of possibly thousands of Amazon EC2 instances running in a single or multiple virtual private clouds (VPCs). With custom routing, listener ports are mapped to statically associate port ranges with VPC subnets, which allows Global Accelerator to determine an EC2 instance IP address at the time of connection. By default, all port mapping destinations in a VPC subnet can't receive traffic. You can choose to configure all destinations in the subnet to receive traffic, or to specify individual port mappings that can receive traffic.
For more information, see Types of accelerators (https://docs.aws.amazon.com/global-accelerator/latest/dg/introduction-accelerator-types.html). DNS name Global Accelerator assigns each accelerator a default Domain Name System (DNS) name, similar to a1234567890abcdef.awsglobalaccelerator.com, that points to the static IP addresses that Global Accelerator assigns to you or that you choose from your own IP address range. Depending on the use case, you can use your accelerator's static IP addresses or DNS name to route traffic to your accelerator, or set up DNS records to route traffic using your own custom domain name. Network zone A network zone services the static IP addresses for your accelerator from a unique IP subnet. Similar to an AWS Availability Zone, a network zone is an isolated unit with its own set of physical infrastructure. When you configure an accelerator, by default, Global Accelerator allocates two IPv4 addresses for it. If one IP address from a network zone becomes unavailable due to IP address blocking by certain client networks, or network disruptions, then client applications can retry on the healthy static IP address from the other isolated network zone. Listener A listener processes inbound connections from clients to Global Accelerator, based on the port (or port range) and protocol (or protocols) that you configure. A listener can be configured for TCP, UDP, or both TCP and UDP protocols. Each listener has one or more endpoint groups associated with it, and traffic is forwarded to endpoints in one of the groups. You associate endpoint groups with listeners by specifying the Regions that you want to distribute traffic to. With a standard accelerator, traffic is distributed to optimal endpoints within the endpoint groups associated with a listener. Endpoint group Each endpoint group is associated with a specific AWS Region. Endpoint groups include one or more endpoints in the Region. With a standard accelerator, you can increase or reduce the percentage of traffic that would be otherwise directed to an endpoint group by adjusting a setting called a traffic dial. The traffic dial lets you easily do performance testing or blue/green deployment testing, for example, for new releases across different AWS Regions. Endpoint An endpoint is a resource that Global Accelerator directs traffic to. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses. An Application Load Balancer endpoint can be internet-facing or internal. Traffic for standard accelerators is routed to endpoints based on the health of the endpoint along with configuration options that you choose, such as endpoint weights. For each endpoint, you can configure weights, which are numbers that you can use to specify the proportion of traffic to route to each one. This can be useful, for example, to do performance testing within a Region. Endpoints for custom routing accelerators are virtual private cloud (VPC) subnets with one or many EC2 instances.
Index ¶
- Constants
- func NewDefaultEndpointResolver() *internalendpoints.Resolver
- func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
- func WithEndpointResolver(v EndpointResolver) func(*Options)
- type AddCustomRoutingEndpointsInput
- type AddCustomRoutingEndpointsOutput
- type AdvertiseByoipCidrInput
- type AdvertiseByoipCidrOutput
- type AllowCustomRoutingTrafficInput
- type AllowCustomRoutingTrafficOutput
- type Client
- func New(options Options, optFns ...func(*Options)) *Client
- func NewFromConfig(cfg aws.Config, optFns ...func(*Options)) *Client
- func (c *Client) AddCustomRoutingEndpoints(ctx context.Context, params *AddCustomRoutingEndpointsInput, optFns ...func(*Options)) (*AddCustomRoutingEndpointsOutput, error)
- func (c *Client) AdvertiseByoipCidr(ctx context.Context, params *AdvertiseByoipCidrInput, optFns ...func(*Options)) (*AdvertiseByoipCidrOutput, error)
- func (c *Client) AllowCustomRoutingTraffic(ctx context.Context, params *AllowCustomRoutingTrafficInput, optFns ...func(*Options)) (*AllowCustomRoutingTrafficOutput, error)
- func (c *Client) CreateAccelerator(ctx context.Context, params *CreateAcceleratorInput, optFns ...func(*Options)) (*CreateAcceleratorOutput, error)
- func (c *Client) CreateCustomRoutingAccelerator(ctx context.Context, params *CreateCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*CreateCustomRoutingAcceleratorOutput, error)
- func (c *Client) CreateCustomRoutingEndpointGroup(ctx context.Context, params *CreateCustomRoutingEndpointGroupInput, optFns ...func(*Options)) (*CreateCustomRoutingEndpointGroupOutput, error)
- func (c *Client) CreateCustomRoutingListener(ctx context.Context, params *CreateCustomRoutingListenerInput, optFns ...func(*Options)) (*CreateCustomRoutingListenerOutput, error)
- func (c *Client) CreateEndpointGroup(ctx context.Context, params *CreateEndpointGroupInput, optFns ...func(*Options)) (*CreateEndpointGroupOutput, error)
- func (c *Client) CreateListener(ctx context.Context, params *CreateListenerInput, optFns ...func(*Options)) (*CreateListenerOutput, error)
- func (c *Client) DeleteAccelerator(ctx context.Context, params *DeleteAcceleratorInput, optFns ...func(*Options)) (*DeleteAcceleratorOutput, error)
- func (c *Client) DeleteCustomRoutingAccelerator(ctx context.Context, params *DeleteCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*DeleteCustomRoutingAcceleratorOutput, error)
- func (c *Client) DeleteCustomRoutingEndpointGroup(ctx context.Context, params *DeleteCustomRoutingEndpointGroupInput, optFns ...func(*Options)) (*DeleteCustomRoutingEndpointGroupOutput, error)
- func (c *Client) DeleteCustomRoutingListener(ctx context.Context, params *DeleteCustomRoutingListenerInput, optFns ...func(*Options)) (*DeleteCustomRoutingListenerOutput, error)
- func (c *Client) DeleteEndpointGroup(ctx context.Context, params *DeleteEndpointGroupInput, optFns ...func(*Options)) (*DeleteEndpointGroupOutput, error)
- func (c *Client) DeleteListener(ctx context.Context, params *DeleteListenerInput, optFns ...func(*Options)) (*DeleteListenerOutput, error)
- func (c *Client) DenyCustomRoutingTraffic(ctx context.Context, params *DenyCustomRoutingTrafficInput, optFns ...func(*Options)) (*DenyCustomRoutingTrafficOutput, error)
- func (c *Client) DeprovisionByoipCidr(ctx context.Context, params *DeprovisionByoipCidrInput, optFns ...func(*Options)) (*DeprovisionByoipCidrOutput, error)
- func (c *Client) DescribeAccelerator(ctx context.Context, params *DescribeAcceleratorInput, optFns ...func(*Options)) (*DescribeAcceleratorOutput, error)
- func (c *Client) DescribeAcceleratorAttributes(ctx context.Context, params *DescribeAcceleratorAttributesInput, optFns ...func(*Options)) (*DescribeAcceleratorAttributesOutput, error)
- func (c *Client) DescribeCustomRoutingAccelerator(ctx context.Context, params *DescribeCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*DescribeCustomRoutingAcceleratorOutput, error)
- func (c *Client) DescribeCustomRoutingAcceleratorAttributes(ctx context.Context, params *DescribeCustomRoutingAcceleratorAttributesInput, optFns ...func(*Options)) (*DescribeCustomRoutingAcceleratorAttributesOutput, error)
- func (c *Client) DescribeCustomRoutingEndpointGroup(ctx context.Context, params *DescribeCustomRoutingEndpointGroupInput, optFns ...func(*Options)) (*DescribeCustomRoutingEndpointGroupOutput, error)
- func (c *Client) DescribeCustomRoutingListener(ctx context.Context, params *DescribeCustomRoutingListenerInput, optFns ...func(*Options)) (*DescribeCustomRoutingListenerOutput, error)
- func (c *Client) DescribeEndpointGroup(ctx context.Context, params *DescribeEndpointGroupInput, optFns ...func(*Options)) (*DescribeEndpointGroupOutput, error)
- func (c *Client) DescribeListener(ctx context.Context, params *DescribeListenerInput, optFns ...func(*Options)) (*DescribeListenerOutput, error)
- func (c *Client) ListAccelerators(ctx context.Context, params *ListAcceleratorsInput, optFns ...func(*Options)) (*ListAcceleratorsOutput, error)
- func (c *Client) ListByoipCidrs(ctx context.Context, params *ListByoipCidrsInput, optFns ...func(*Options)) (*ListByoipCidrsOutput, error)
- func (c *Client) ListCustomRoutingAccelerators(ctx context.Context, params *ListCustomRoutingAcceleratorsInput, optFns ...func(*Options)) (*ListCustomRoutingAcceleratorsOutput, error)
- func (c *Client) ListCustomRoutingEndpointGroups(ctx context.Context, params *ListCustomRoutingEndpointGroupsInput, optFns ...func(*Options)) (*ListCustomRoutingEndpointGroupsOutput, error)
- func (c *Client) ListCustomRoutingListeners(ctx context.Context, params *ListCustomRoutingListenersInput, optFns ...func(*Options)) (*ListCustomRoutingListenersOutput, error)
- func (c *Client) ListCustomRoutingPortMappings(ctx context.Context, params *ListCustomRoutingPortMappingsInput, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsOutput, error)
- func (c *Client) ListCustomRoutingPortMappingsByDestination(ctx context.Context, params *ListCustomRoutingPortMappingsByDestinationInput, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsByDestinationOutput, error)
- func (c *Client) ListEndpointGroups(ctx context.Context, params *ListEndpointGroupsInput, optFns ...func(*Options)) (*ListEndpointGroupsOutput, error)
- func (c *Client) ListListeners(ctx context.Context, params *ListListenersInput, optFns ...func(*Options)) (*ListListenersOutput, error)
- func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
- func (c *Client) ProvisionByoipCidr(ctx context.Context, params *ProvisionByoipCidrInput, optFns ...func(*Options)) (*ProvisionByoipCidrOutput, error)
- func (c *Client) RemoveCustomRoutingEndpoints(ctx context.Context, params *RemoveCustomRoutingEndpointsInput, optFns ...func(*Options)) (*RemoveCustomRoutingEndpointsOutput, error)
- func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
- func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
- func (c *Client) UpdateAccelerator(ctx context.Context, params *UpdateAcceleratorInput, optFns ...func(*Options)) (*UpdateAcceleratorOutput, error)
- func (c *Client) UpdateAcceleratorAttributes(ctx context.Context, params *UpdateAcceleratorAttributesInput, optFns ...func(*Options)) (*UpdateAcceleratorAttributesOutput, error)
- func (c *Client) UpdateCustomRoutingAccelerator(ctx context.Context, params *UpdateCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*UpdateCustomRoutingAcceleratorOutput, error)
- func (c *Client) UpdateCustomRoutingAcceleratorAttributes(ctx context.Context, params *UpdateCustomRoutingAcceleratorAttributesInput, optFns ...func(*Options)) (*UpdateCustomRoutingAcceleratorAttributesOutput, error)
- func (c *Client) UpdateCustomRoutingListener(ctx context.Context, params *UpdateCustomRoutingListenerInput, optFns ...func(*Options)) (*UpdateCustomRoutingListenerOutput, error)
- func (c *Client) UpdateEndpointGroup(ctx context.Context, params *UpdateEndpointGroupInput, optFns ...func(*Options)) (*UpdateEndpointGroupOutput, error)
- func (c *Client) UpdateListener(ctx context.Context, params *UpdateListenerInput, optFns ...func(*Options)) (*UpdateListenerOutput, error)
- func (c *Client) WithdrawByoipCidr(ctx context.Context, params *WithdrawByoipCidrInput, optFns ...func(*Options)) (*WithdrawByoipCidrOutput, error)
- type CreateAcceleratorInput
- type CreateAcceleratorOutput
- type CreateCustomRoutingAcceleratorInput
- type CreateCustomRoutingAcceleratorOutput
- type CreateCustomRoutingEndpointGroupInput
- type CreateCustomRoutingEndpointGroupOutput
- type CreateCustomRoutingListenerInput
- type CreateCustomRoutingListenerOutput
- type CreateEndpointGroupInput
- type CreateEndpointGroupOutput
- type CreateListenerInput
- type CreateListenerOutput
- type DeleteAcceleratorInput
- type DeleteAcceleratorOutput
- type DeleteCustomRoutingAcceleratorInput
- type DeleteCustomRoutingAcceleratorOutput
- type DeleteCustomRoutingEndpointGroupInput
- type DeleteCustomRoutingEndpointGroupOutput
- type DeleteCustomRoutingListenerInput
- type DeleteCustomRoutingListenerOutput
- type DeleteEndpointGroupInput
- type DeleteEndpointGroupOutput
- type DeleteListenerInput
- type DeleteListenerOutput
- type DenyCustomRoutingTrafficInput
- type DenyCustomRoutingTrafficOutput
- type DeprovisionByoipCidrInput
- type DeprovisionByoipCidrOutput
- type DescribeAcceleratorAttributesInput
- type DescribeAcceleratorAttributesOutput
- type DescribeAcceleratorInput
- type DescribeAcceleratorOutput
- type DescribeCustomRoutingAcceleratorAttributesInput
- type DescribeCustomRoutingAcceleratorAttributesOutput
- type DescribeCustomRoutingAcceleratorInput
- type DescribeCustomRoutingAcceleratorOutput
- type DescribeCustomRoutingEndpointGroupInput
- type DescribeCustomRoutingEndpointGroupOutput
- type DescribeCustomRoutingListenerInput
- type DescribeCustomRoutingListenerOutput
- type DescribeEndpointGroupInput
- type DescribeEndpointGroupOutput
- type DescribeListenerInput
- type DescribeListenerOutput
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type HTTPClient
- type HTTPSignerV4
- type IdempotencyTokenProvider
- type ListAcceleratorsAPIClient
- type ListAcceleratorsInput
- type ListAcceleratorsOutput
- type ListAcceleratorsPaginator
- func NewListAcceleratorsPaginator(client ListAcceleratorsAPIClient, params *ListAcceleratorsInput, optFns ...func(*ListAcceleratorsPaginatorOptions)) *ListAcceleratorsPaginator
- func (p *ListAcceleratorsPaginator) HasMorePages() bool
- func (p *ListAcceleratorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListAcceleratorsOutput, error)
- type ListAcceleratorsPaginatorOptions
- type ListByoipCidrsAPIClient
- type ListByoipCidrsInput
- type ListByoipCidrsOutput
- type ListByoipCidrsPaginator
- func NewListByoipCidrsPaginator(client ListByoipCidrsAPIClient, params *ListByoipCidrsInput, optFns ...func(*ListByoipCidrsPaginatorOptions)) *ListByoipCidrsPaginator
- func (p *ListByoipCidrsPaginator) HasMorePages() bool
- func (p *ListByoipCidrsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListByoipCidrsOutput, error)
- type ListByoipCidrsPaginatorOptions
- type ListCustomRoutingAcceleratorsAPIClient
- type ListCustomRoutingAcceleratorsInput
- type ListCustomRoutingAcceleratorsOutput
- type ListCustomRoutingAcceleratorsPaginator
- func NewListCustomRoutingAcceleratorsPaginator(client ListCustomRoutingAcceleratorsAPIClient, params *ListCustomRoutingAcceleratorsInput, optFns ...func(*ListCustomRoutingAcceleratorsPaginatorOptions)) *ListCustomRoutingAcceleratorsPaginator
- func (p *ListCustomRoutingAcceleratorsPaginator) HasMorePages() bool
- func (p *ListCustomRoutingAcceleratorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingAcceleratorsOutput, error)
- type ListCustomRoutingAcceleratorsPaginatorOptions
- type ListCustomRoutingEndpointGroupsAPIClient
- type ListCustomRoutingEndpointGroupsInput
- type ListCustomRoutingEndpointGroupsOutput
- type ListCustomRoutingEndpointGroupsPaginator
- func NewListCustomRoutingEndpointGroupsPaginator(client ListCustomRoutingEndpointGroupsAPIClient, params *ListCustomRoutingEndpointGroupsInput, optFns ...func(*ListCustomRoutingEndpointGroupsPaginatorOptions)) *ListCustomRoutingEndpointGroupsPaginator
- func (p *ListCustomRoutingEndpointGroupsPaginator) HasMorePages() bool
- func (p *ListCustomRoutingEndpointGroupsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingEndpointGroupsOutput, error)
- type ListCustomRoutingEndpointGroupsPaginatorOptions
- type ListCustomRoutingListenersAPIClient
- type ListCustomRoutingListenersInput
- type ListCustomRoutingListenersOutput
- type ListCustomRoutingListenersPaginator
- func NewListCustomRoutingListenersPaginator(client ListCustomRoutingListenersAPIClient, params *ListCustomRoutingListenersInput, optFns ...func(*ListCustomRoutingListenersPaginatorOptions)) *ListCustomRoutingListenersPaginator
- func (p *ListCustomRoutingListenersPaginator) HasMorePages() bool
- func (p *ListCustomRoutingListenersPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingListenersOutput, error)
- type ListCustomRoutingListenersPaginatorOptions
- type ListCustomRoutingPortMappingsAPIClient
- type ListCustomRoutingPortMappingsByDestinationAPIClient
- type ListCustomRoutingPortMappingsByDestinationInput
- type ListCustomRoutingPortMappingsByDestinationOutput
- type ListCustomRoutingPortMappingsByDestinationPaginator
- func NewListCustomRoutingPortMappingsByDestinationPaginator(client ListCustomRoutingPortMappingsByDestinationAPIClient, params *ListCustomRoutingPortMappingsByDestinationInput, optFns ...func(*ListCustomRoutingPortMappingsByDestinationPaginatorOptions)) *ListCustomRoutingPortMappingsByDestinationPaginator
- func (p *ListCustomRoutingPortMappingsByDestinationPaginator) HasMorePages() bool
- func (p *ListCustomRoutingPortMappingsByDestinationPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsByDestinationOutput, error)
- type ListCustomRoutingPortMappingsByDestinationPaginatorOptions
- type ListCustomRoutingPortMappingsInput
- type ListCustomRoutingPortMappingsOutput
- type ListCustomRoutingPortMappingsPaginator
- func NewListCustomRoutingPortMappingsPaginator(client ListCustomRoutingPortMappingsAPIClient, params *ListCustomRoutingPortMappingsInput, optFns ...func(*ListCustomRoutingPortMappingsPaginatorOptions)) *ListCustomRoutingPortMappingsPaginator
- func (p *ListCustomRoutingPortMappingsPaginator) HasMorePages() bool
- func (p *ListCustomRoutingPortMappingsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsOutput, error)
- type ListCustomRoutingPortMappingsPaginatorOptions
- type ListEndpointGroupsAPIClient
- type ListEndpointGroupsInput
- type ListEndpointGroupsOutput
- type ListEndpointGroupsPaginator
- func NewListEndpointGroupsPaginator(client ListEndpointGroupsAPIClient, params *ListEndpointGroupsInput, optFns ...func(*ListEndpointGroupsPaginatorOptions)) *ListEndpointGroupsPaginator
- func (p *ListEndpointGroupsPaginator) HasMorePages() bool
- func (p *ListEndpointGroupsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListEndpointGroupsOutput, error)
- type ListEndpointGroupsPaginatorOptions
- type ListListenersAPIClient
- type ListListenersInput
- type ListListenersOutput
- type ListListenersPaginator
- func NewListListenersPaginator(client ListListenersAPIClient, params *ListListenersInput, optFns ...func(*ListListenersPaginatorOptions)) *ListListenersPaginator
- func (p *ListListenersPaginator) HasMorePages() bool
- func (p *ListListenersPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListListenersOutput, error)
- type ListListenersPaginatorOptions
- type ListTagsForResourceInput
- type ListTagsForResourceOutput
- type Options
- type ProvisionByoipCidrInput
- type ProvisionByoipCidrOutput
- type RemoveCustomRoutingEndpointsInput
- type RemoveCustomRoutingEndpointsOutput
- type ResolveEndpoint
- func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) ( out middleware.SerializeOutput, metadata middleware.Metadata, err error, )
- func (*ResolveEndpoint) ID() string
- type TagResourceInput
- type TagResourceOutput
- type UntagResourceInput
- type UntagResourceOutput
- type UpdateAcceleratorAttributesInput
- type UpdateAcceleratorAttributesOutput
- type UpdateAcceleratorInput
- type UpdateAcceleratorOutput
- type UpdateCustomRoutingAcceleratorAttributesInput
- type UpdateCustomRoutingAcceleratorAttributesOutput
- type UpdateCustomRoutingAcceleratorInput
- type UpdateCustomRoutingAcceleratorOutput
- type UpdateCustomRoutingListenerInput
- type UpdateCustomRoutingListenerOutput
- type UpdateEndpointGroupInput
- type UpdateEndpointGroupOutput
- type UpdateListenerInput
- type UpdateListenerOutput
- type WithdrawByoipCidrInput
- type WithdrawByoipCidrOutput
Constants ¶
const ServiceAPIVersion = "2018-08-08"
const ServiceID = "Global Accelerator"
Functions ¶
func NewDefaultEndpointResolver ¶
func NewDefaultEndpointResolver() *internalendpoints.Resolver
NewDefaultEndpointResolver constructs a new service endpoint resolver
func WithAPIOptions ¶
func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
WithAPIOptions returns a functional option for setting the Client's APIOptions option.
func WithEndpointResolver ¶
func WithEndpointResolver(v EndpointResolver) func(*Options)
WithEndpointResolver returns a functional option for setting the Client's EndpointResolver option.
Types ¶
type AddCustomRoutingEndpointsInput ¶
type AddCustomRoutingEndpointsInput struct { // The list of endpoint objects to add to a custom routing accelerator. // // This member is required. EndpointConfigurations []types.CustomRoutingEndpointConfiguration // The Amazon Resource Name (ARN) of the endpoint group for the custom routing // endpoint. // // This member is required. EndpointGroupArn *string }
type AddCustomRoutingEndpointsOutput ¶
type AddCustomRoutingEndpointsOutput struct { // The endpoint objects added to the custom routing accelerator. EndpointDescriptions []types.CustomRoutingEndpointDescription // The Amazon Resource Name (ARN) of the endpoint group for the custom routing // endpoint. EndpointGroupArn *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type AdvertiseByoipCidrInput ¶
type AdvertiseByoipCidrInput struct { // The address range, in CIDR notation. This must be the exact range that you // provisioned. You can't advertise only a portion of the provisioned range. // // This member is required. Cidr *string }
type AdvertiseByoipCidrOutput ¶
type AdvertiseByoipCidrOutput struct { // Information about the address range. ByoipCidr *types.ByoipCidr // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type AllowCustomRoutingTrafficInput ¶
type AllowCustomRoutingTrafficInput struct { // The Amazon Resource Name (ARN) of the endpoint group. // // This member is required. EndpointGroupArn *string // An ID for the endpoint. For custom routing accelerators, this is the virtual // private cloud (VPC) subnet ID. // // This member is required. EndpointId *string // Indicates whether all destination IP addresses and ports for a specified VPC // subnet endpoint can receive traffic from a custom routing accelerator. The value // is TRUE or FALSE. When set to TRUE, all destinations in the custom routing VPC // subnet can receive traffic. Note that you cannot specify destination IP // addresses and ports when the value is set to TRUE. When set to FALSE (or not // specified), you must specify a list of destination IP addresses that are allowed // to receive traffic. A list of ports is optional. If you don't specify a list of // ports, the ports that can accept traffic is the same as the ports configured for // the endpoint group. The default value is FALSE. AllowAllTrafficToEndpoint *bool // A list of specific Amazon EC2 instance IP addresses (destination addresses) in a // subnet that you want to allow to receive traffic. The IP addresses must be a // subset of the IP addresses that you specified for the endpoint group. // DestinationAddresses is required if AllowAllTrafficToEndpoint is FALSE or is not // specified. DestinationAddresses []string // A list of specific Amazon EC2 instance ports (destination ports) that you want // to allow to receive traffic. DestinationPorts []int32 }
type AllowCustomRoutingTrafficOutput ¶
type AllowCustomRoutingTrafficOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for AWS Global Accelerator.
func New ¶
New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.
func NewFromConfig ¶
NewFromConfig returns a new client from the provided config.
func (*Client) AddCustomRoutingEndpoints ¶
func (c *Client) AddCustomRoutingEndpoints(ctx context.Context, params *AddCustomRoutingEndpointsInput, optFns ...func(*Options)) (*AddCustomRoutingEndpointsOutput, error)
Associate a virtual private cloud (VPC) subnet endpoint with your custom routing accelerator. The listener port range must be large enough to support the number of IP addresses that can be specified in your subnet. The number of ports required is: subnet size times the number of ports per destination EC2 instances. For example, a subnet defined as /24 requires a listener port range of at least 255 ports. Note: You must have enough remaining listener ports available to map to the subnet ports, or the call will fail with a LimitExceededException. By default, all destinations in a subnet in a custom routing accelerator cannot receive traffic. To enable all destinations to receive traffic, or to specify individual port mappings that can receive traffic, see the AllowCustomRoutingTraffic (https://docs.aws.amazon.com/global-accelerator/latest/api/API_AllowCustomRoutingTraffic.html) operation.
func (*Client) AdvertiseByoipCidr ¶
func (c *Client) AdvertiseByoipCidr(ctx context.Context, params *AdvertiseByoipCidrInput, optFns ...func(*Options)) (*AdvertiseByoipCidrOutput, error)
Advertises an IPv4 address range that is provisioned for use with your AWS resources through bring your own IP addresses (BYOIP). It can take a few minutes before traffic to the specified addresses starts routing to AWS because of propagation delays. To stop advertising the BYOIP address range, use WithdrawByoipCidr (https://docs.aws.amazon.com/global-accelerator/latest/api/WithdrawByoipCidr.html). For more information, see Bring Your Own IP Addresses (BYOIP) (https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html) in the AWS Global Accelerator Developer Guide.
func (*Client) AllowCustomRoutingTraffic ¶
func (c *Client) AllowCustomRoutingTraffic(ctx context.Context, params *AllowCustomRoutingTrafficInput, optFns ...func(*Options)) (*AllowCustomRoutingTrafficOutput, error)
Specify the Amazon EC2 instance (destination) IP addresses and ports for a VPC subnet endpoint that can receive traffic for a custom routing accelerator. You can allow traffic to all destinations in the subnet endpoint, or allow traffic to a specified list of destination IP addresses and ports in the subnet. Note that you cannot specify IP addresses or ports outside of the range that you configured for the endpoint group. After you make changes, you can verify that the updates are complete by checking the status of your accelerator: the status changes from IN_PROGRESS to DEPLOYED.
func (*Client) CreateAccelerator ¶
func (c *Client) CreateAccelerator(ctx context.Context, params *CreateAcceleratorInput, optFns ...func(*Options)) (*CreateAcceleratorOutput, error)
Create an accelerator. An accelerator includes one or more listeners that process inbound connections and direct traffic to one or more endpoint groups, each of which includes endpoints, such as Network Load Balancers. Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.
func (*Client) CreateCustomRoutingAccelerator ¶
func (c *Client) CreateCustomRoutingAccelerator(ctx context.Context, params *CreateCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*CreateCustomRoutingAcceleratorOutput, error)
Create a custom routing accelerator. A custom routing accelerator directs traffic to one of possibly thousands of Amazon EC2 instance destinations running in a single or multiple virtual private clouds (VPC) subnet endpoints. Be aware that, by default, all destination EC2 instances in a VPC subnet endpoint cannot receive traffic. To enable all destinations to receive traffic, or to specify individual port mappings that can receive traffic, see the AllowCustomRoutingTraffic (https://docs.aws.amazon.com/global-accelerator/latest/api/API_AllowCustomRoutingTraffic.html) operation.
func (*Client) CreateCustomRoutingEndpointGroup ¶
func (c *Client) CreateCustomRoutingEndpointGroup(ctx context.Context, params *CreateCustomRoutingEndpointGroupInput, optFns ...func(*Options)) (*CreateCustomRoutingEndpointGroupOutput, error)
Create an endpoint group for the specified listener for a custom routing accelerator. An endpoint group is a collection of endpoints in one AWS Region.
func (*Client) CreateCustomRoutingListener ¶
func (c *Client) CreateCustomRoutingListener(ctx context.Context, params *CreateCustomRoutingListenerInput, optFns ...func(*Options)) (*CreateCustomRoutingListenerOutput, error)
Create a listener to process inbound connections from clients to a custom routing accelerator. Connections arrive to assigned static IP addresses on the port range that you specify.
func (*Client) CreateEndpointGroup ¶
func (c *Client) CreateEndpointGroup(ctx context.Context, params *CreateEndpointGroupInput, optFns ...func(*Options)) (*CreateEndpointGroupOutput, error)
Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one AWS Region. A resource must be valid and active when you add it as an endpoint.
func (*Client) CreateListener ¶
func (c *Client) CreateListener(ctx context.Context, params *CreateListenerInput, optFns ...func(*Options)) (*CreateListenerOutput, error)
Create a listener to process inbound connections from clients to an accelerator. Connections arrive to assigned static IP addresses on a port, port range, or list of port ranges that you specify.
func (*Client) DeleteAccelerator ¶
func (c *Client) DeleteAccelerator(ctx context.Context, params *DeleteAcceleratorInput, optFns ...func(*Options)) (*DeleteAcceleratorOutput, error)
Delete an accelerator. Before you can delete an accelerator, you must disable it and remove all dependent resources (listeners and endpoint groups). To disable the accelerator, update the accelerator to set Enabled to false. When you create an accelerator, by default, Global Accelerator provides you with a set of two static IP addresses. Alternatively, you can bring your own IP address ranges to Global Accelerator and assign IP addresses from those ranges. The IP addresses are assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to the accelerator, so you can no longer route traffic by using them. As a best practice, ensure that you have permissions in place to avoid inadvertently deleting accelerators. You can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Authentication and Access Control (https://docs.aws.amazon.com/global-accelerator/latest/dg/auth-and-access-control.html) in the AWS Global Accelerator Developer Guide.
func (*Client) DeleteCustomRoutingAccelerator ¶
func (c *Client) DeleteCustomRoutingAccelerator(ctx context.Context, params *DeleteCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*DeleteCustomRoutingAcceleratorOutput, error)
Delete a custom routing accelerator. Before you can delete an accelerator, you must disable it and remove all dependent resources (listeners and endpoint groups). To disable the accelerator, update the accelerator to set Enabled to false. When you create a custom routing accelerator, by default, Global Accelerator provides you with a set of two static IP addresses. The IP addresses are assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to the accelerator, so you can no longer route traffic by using them. As a best practice, ensure that you have permissions in place to avoid inadvertently deleting accelerators. You can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Authentication and Access Control (https://docs.aws.amazon.com/global-accelerator/latest/dg/auth-and-access-control.html) in the AWS Global Accelerator Developer Guide.
func (*Client) DeleteCustomRoutingEndpointGroup ¶
func (c *Client) DeleteCustomRoutingEndpointGroup(ctx context.Context, params *DeleteCustomRoutingEndpointGroupInput, optFns ...func(*Options)) (*DeleteCustomRoutingEndpointGroupOutput, error)
Delete an endpoint group from a listener for a custom routing accelerator.
func (*Client) DeleteCustomRoutingListener ¶
func (c *Client) DeleteCustomRoutingListener(ctx context.Context, params *DeleteCustomRoutingListenerInput, optFns ...func(*Options)) (*DeleteCustomRoutingListenerOutput, error)
Delete a listener for a custom routing accelerator.
func (*Client) DeleteEndpointGroup ¶
func (c *Client) DeleteEndpointGroup(ctx context.Context, params *DeleteEndpointGroupInput, optFns ...func(*Options)) (*DeleteEndpointGroupOutput, error)
Delete an endpoint group from a listener.
func (*Client) DeleteListener ¶
func (c *Client) DeleteListener(ctx context.Context, params *DeleteListenerInput, optFns ...func(*Options)) (*DeleteListenerOutput, error)
Delete a listener from an accelerator.
func (*Client) DenyCustomRoutingTraffic ¶
func (c *Client) DenyCustomRoutingTraffic(ctx context.Context, params *DenyCustomRoutingTrafficInput, optFns ...func(*Options)) (*DenyCustomRoutingTrafficOutput, error)
Specify the Amazon EC2 instance (destination) IP addresses and ports for a VPC subnet endpoint that cannot receive traffic for a custom routing accelerator. You can deny traffic to all destinations in the VPC endpoint, or deny traffic to a specified list of destination IP addresses and ports. Note that you cannot specify IP addresses or ports outside of the range that you configured for the endpoint group. After you make changes, you can verify that the updates are complete by checking the status of your accelerator: the status changes from IN_PROGRESS to DEPLOYED.
func (*Client) DeprovisionByoipCidr ¶
func (c *Client) DeprovisionByoipCidr(ctx context.Context, params *DeprovisionByoipCidrInput, optFns ...func(*Options)) (*DeprovisionByoipCidrOutput, error)
Releases the specified address range that you provisioned to use with your AWS resources through bring your own IP addresses (BYOIP) and deletes the corresponding address pool. Before you can release an address range, you must stop advertising it by using WithdrawByoipCidr (https://docs.aws.amazon.com/global-accelerator/latest/api/WithdrawByoipCidr.html) and you must not have any accelerators that are using static IP addresses allocated from its address range. For more information, see Bring Your Own IP Addresses (BYOIP) (https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html) in the AWS Global Accelerator Developer Guide.
func (*Client) DescribeAccelerator ¶
func (c *Client) DescribeAccelerator(ctx context.Context, params *DescribeAcceleratorInput, optFns ...func(*Options)) (*DescribeAcceleratorOutput, error)
Describe an accelerator.
func (*Client) DescribeAcceleratorAttributes ¶
func (c *Client) DescribeAcceleratorAttributes(ctx context.Context, params *DescribeAcceleratorAttributesInput, optFns ...func(*Options)) (*DescribeAcceleratorAttributesOutput, error)
Describe the attributes of an accelerator.
func (*Client) DescribeCustomRoutingAccelerator ¶
func (c *Client) DescribeCustomRoutingAccelerator(ctx context.Context, params *DescribeCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*DescribeCustomRoutingAcceleratorOutput, error)
Describe a custom routing accelerator.
func (*Client) DescribeCustomRoutingAcceleratorAttributes ¶
func (c *Client) DescribeCustomRoutingAcceleratorAttributes(ctx context.Context, params *DescribeCustomRoutingAcceleratorAttributesInput, optFns ...func(*Options)) (*DescribeCustomRoutingAcceleratorAttributesOutput, error)
Describe the attributes of a custom routing accelerator.
func (*Client) DescribeCustomRoutingEndpointGroup ¶
func (c *Client) DescribeCustomRoutingEndpointGroup(ctx context.Context, params *DescribeCustomRoutingEndpointGroupInput, optFns ...func(*Options)) (*DescribeCustomRoutingEndpointGroupOutput, error)
Describe an endpoint group for a custom routing accelerator.
func (*Client) DescribeCustomRoutingListener ¶
func (c *Client) DescribeCustomRoutingListener(ctx context.Context, params *DescribeCustomRoutingListenerInput, optFns ...func(*Options)) (*DescribeCustomRoutingListenerOutput, error)
The description of a listener for a custom routing accelerator.
func (*Client) DescribeEndpointGroup ¶
func (c *Client) DescribeEndpointGroup(ctx context.Context, params *DescribeEndpointGroupInput, optFns ...func(*Options)) (*DescribeEndpointGroupOutput, error)
Describe an endpoint group.
func (*Client) DescribeListener ¶
func (c *Client) DescribeListener(ctx context.Context, params *DescribeListenerInput, optFns ...func(*Options)) (*DescribeListenerOutput, error)
Describe a listener.
func (*Client) ListAccelerators ¶
func (c *Client) ListAccelerators(ctx context.Context, params *ListAcceleratorsInput, optFns ...func(*Options)) (*ListAcceleratorsOutput, error)
List the accelerators for an AWS account.
func (*Client) ListByoipCidrs ¶
func (c *Client) ListByoipCidrs(ctx context.Context, params *ListByoipCidrsInput, optFns ...func(*Options)) (*ListByoipCidrsOutput, error)
Lists the IP address ranges that were specified in calls to ProvisionByoipCidr (https://docs.aws.amazon.com/global-accelerator/latest/api/ProvisionByoipCidr.html), including the current state and a history of state changes.
func (*Client) ListCustomRoutingAccelerators ¶
func (c *Client) ListCustomRoutingAccelerators(ctx context.Context, params *ListCustomRoutingAcceleratorsInput, optFns ...func(*Options)) (*ListCustomRoutingAcceleratorsOutput, error)
List the custom routing accelerators for an AWS account.
func (*Client) ListCustomRoutingEndpointGroups ¶
func (c *Client) ListCustomRoutingEndpointGroups(ctx context.Context, params *ListCustomRoutingEndpointGroupsInput, optFns ...func(*Options)) (*ListCustomRoutingEndpointGroupsOutput, error)
List the endpoint groups that are associated with a listener for a custom routing accelerator.
func (*Client) ListCustomRoutingListeners ¶
func (c *Client) ListCustomRoutingListeners(ctx context.Context, params *ListCustomRoutingListenersInput, optFns ...func(*Options)) (*ListCustomRoutingListenersOutput, error)
List the listeners for a custom routing accelerator.
func (*Client) ListCustomRoutingPortMappings ¶
func (c *Client) ListCustomRoutingPortMappings(ctx context.Context, params *ListCustomRoutingPortMappingsInput, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsOutput, error)
Provides a complete mapping from the public accelerator IP address and port to destination EC2 instance IP addresses and ports in the virtual public cloud (VPC) subnet endpoint for a custom routing accelerator. For each subnet endpoint that you add, Global Accelerator creates a new static port mapping for the accelerator. The port mappings don't change after Global Accelerator generates them, so you can retrieve and cache the full mapping on your servers. If you remove a subnet from your accelerator, Global Accelerator removes (reclaims) the port mappings. If you add a subnet to your accelerator, Global Accelerator creates new port mappings (the existing ones don't change). If you add or remove EC2 instances in your subnet, the port mappings don't change, because the mappings are created when you add the subnet to Global Accelerator. The mappings also include a flag for each destination denoting which destination IP addresses and ports are allowed or denied traffic.
func (*Client) ListCustomRoutingPortMappingsByDestination ¶
func (c *Client) ListCustomRoutingPortMappingsByDestination(ctx context.Context, params *ListCustomRoutingPortMappingsByDestinationInput, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsByDestinationOutput, error)
List the port mappings for a specific EC2 instance (destination) in a VPC subnet endpoint. The response is the mappings for one destination IP address. This is useful when your subnet endpoint has mappings that span multiple custom routing accelerators in your account, or for scenarios where you only want to list the port mappings for a specific destination instance.
func (*Client) ListEndpointGroups ¶
func (c *Client) ListEndpointGroups(ctx context.Context, params *ListEndpointGroupsInput, optFns ...func(*Options)) (*ListEndpointGroupsOutput, error)
List the endpoint groups that are associated with a listener.
func (*Client) ListListeners ¶
func (c *Client) ListListeners(ctx context.Context, params *ListListenersInput, optFns ...func(*Options)) (*ListListenersOutput, error)
List the listeners for an accelerator.
func (*Client) ListTagsForResource ¶
func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)
List all tags for an accelerator. For more information, see Tagging in AWS Global Accelerator (https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html) in the AWS Global Accelerator Developer Guide.
func (*Client) ProvisionByoipCidr ¶
func (c *Client) ProvisionByoipCidr(ctx context.Context, params *ProvisionByoipCidrInput, optFns ...func(*Options)) (*ProvisionByoipCidrOutput, error)
Provisions an IP address range to use with your AWS resources through bring your own IP addresses (BYOIP) and creates a corresponding address pool. After the address range is provisioned, it is ready to be advertised using AdvertiseByoipCidr (https://docs.aws.amazon.com/global-accelerator/latest/api/AdvertiseByoipCidr.html). For more information, see Bring Your Own IP Addresses (BYOIP) (https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html) in the AWS Global Accelerator Developer Guide.
func (*Client) RemoveCustomRoutingEndpoints ¶
func (c *Client) RemoveCustomRoutingEndpoints(ctx context.Context, params *RemoveCustomRoutingEndpointsInput, optFns ...func(*Options)) (*RemoveCustomRoutingEndpointsOutput, error)
Remove endpoints from a custom routing accelerator.
func (*Client) TagResource ¶
func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)
Add tags to an accelerator resource. For more information, see Tagging in AWS Global Accelerator (https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html) in the AWS Global Accelerator Developer Guide.
func (*Client) UntagResource ¶
func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)
Remove tags from a Global Accelerator resource. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from an accelerator that was already removed. For more information, see Tagging in AWS Global Accelerator (https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html) in the AWS Global Accelerator Developer Guide.
func (*Client) UpdateAccelerator ¶
func (c *Client) UpdateAccelerator(ctx context.Context, params *UpdateAcceleratorInput, optFns ...func(*Options)) (*UpdateAcceleratorOutput, error)
Update an accelerator. Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.
func (*Client) UpdateAcceleratorAttributes ¶
func (c *Client) UpdateAcceleratorAttributes(ctx context.Context, params *UpdateAcceleratorAttributesInput, optFns ...func(*Options)) (*UpdateAcceleratorAttributesOutput, error)
Update the attributes for an accelerator.
func (*Client) UpdateCustomRoutingAccelerator ¶
func (c *Client) UpdateCustomRoutingAccelerator(ctx context.Context, params *UpdateCustomRoutingAcceleratorInput, optFns ...func(*Options)) (*UpdateCustomRoutingAcceleratorOutput, error)
Update a custom routing accelerator.
func (*Client) UpdateCustomRoutingAcceleratorAttributes ¶
func (c *Client) UpdateCustomRoutingAcceleratorAttributes(ctx context.Context, params *UpdateCustomRoutingAcceleratorAttributesInput, optFns ...func(*Options)) (*UpdateCustomRoutingAcceleratorAttributesOutput, error)
Update the attributes for a custom routing accelerator.
func (*Client) UpdateCustomRoutingListener ¶
func (c *Client) UpdateCustomRoutingListener(ctx context.Context, params *UpdateCustomRoutingListenerInput, optFns ...func(*Options)) (*UpdateCustomRoutingListenerOutput, error)
Update a listener for a custom routing accelerator.
func (*Client) UpdateEndpointGroup ¶
func (c *Client) UpdateEndpointGroup(ctx context.Context, params *UpdateEndpointGroupInput, optFns ...func(*Options)) (*UpdateEndpointGroupOutput, error)
Update an endpoint group. A resource must be valid and active when you add it as an endpoint.
func (*Client) UpdateListener ¶
func (c *Client) UpdateListener(ctx context.Context, params *UpdateListenerInput, optFns ...func(*Options)) (*UpdateListenerOutput, error)
Update a listener.
func (*Client) WithdrawByoipCidr ¶
func (c *Client) WithdrawByoipCidr(ctx context.Context, params *WithdrawByoipCidrInput, optFns ...func(*Options)) (*WithdrawByoipCidrOutput, error)
Stops advertising an address range that is provisioned as an address pool. You can perform this operation at most once every 10 seconds, even if you specify different address ranges each time. It can take a few minutes before traffic to the specified addresses stops routing to AWS because of propagation delays. For more information, see Bring Your Own IP Addresses (BYOIP) (https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html) in the AWS Global Accelerator Developer Guide.
type CreateAcceleratorInput ¶
type CreateAcceleratorInput struct { // A unique, case-sensitive identifier that you provide to ensure the // idempotency—that is, the uniqueness—of an accelerator. // // This member is required. IdempotencyToken *string // The name of an accelerator. The name can have a maximum of 32 characters, must // contain only alphanumeric characters or hyphens (-), and must not begin or end // with a hyphen. // // This member is required. Name *string // Indicates whether an accelerator is enabled. The value is true or false. The // default value is true. If the value is set to true, an accelerator cannot be // deleted. If set to false, the accelerator can be deleted. Enabled *bool // The value for the address type must be IPv4. IpAddressType types.IpAddressType // Optionally, if you've added your own IP address pool to Global Accelerator // (BYOIP), you can choose IP addresses from your own pool to use for the // accelerator's static IP addresses when you create an accelerator. You can // specify one or two addresses, separated by a comma. Do not include the /32 // suffix. Only one IP address from each of your IP address ranges can be used for // each accelerator. If you specify only one IP address from your IP address range, // Global Accelerator assigns a second static IP address for the accelerator from // the AWS IP address pool. Note that you can't update IP addresses for an existing // accelerator. To change them, you must create a new accelerator with the new // addresses. For more information, see Bring Your Own IP Addresses (BYOIP) // (https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html) in // the AWS Global Accelerator Developer Guide. IpAddresses []string // Create tags for an accelerator. For more information, see Tagging in AWS Global // Accelerator // (https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html) // in the AWS Global Accelerator Developer Guide. Tags []types.Tag }
type CreateAcceleratorOutput ¶
type CreateAcceleratorOutput struct { // The accelerator that is created by specifying a listener and the supported IP // address types. Accelerator *types.Accelerator // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type CreateCustomRoutingAcceleratorInput ¶
type CreateCustomRoutingAcceleratorInput struct { // A unique, case-sensitive identifier that you provide to ensure the // idempotency—that is, the uniqueness—of the request. // // This member is required. IdempotencyToken *string // The name of a custom routing accelerator. The name can have a maximum of 64 // characters, must contain only alphanumeric characters or hyphens (-), and must // not begin or end with a hyphen. // // This member is required. Name *string // Indicates whether an accelerator is enabled. The value is true or false. The // default value is true. If the value is set to true, an accelerator cannot be // deleted. If set to false, the accelerator can be deleted. Enabled *bool // The value for the address type must be IPv4. IpAddressType types.IpAddressType // Create tags for an accelerator. For more information, see Tagging in AWS Global // Accelerator // (https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html) // in the AWS Global Accelerator Developer Guide. Tags []types.Tag }
type CreateCustomRoutingAcceleratorOutput ¶
type CreateCustomRoutingAcceleratorOutput struct { // The accelerator that is created. Accelerator *types.CustomRoutingAccelerator // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type CreateCustomRoutingEndpointGroupInput ¶
type CreateCustomRoutingEndpointGroupInput struct { // Sets the port range and protocol for all endpoints (virtual private cloud // subnets) in a custom routing endpoint group to accept client traffic on. // // This member is required. DestinationConfigurations []types.CustomRoutingDestinationConfiguration // The AWS Region where the endpoint group is located. A listener can have only one // endpoint group in a specific Region. // // This member is required. EndpointGroupRegion *string // A unique, case-sensitive identifier that you provide to ensure the // idempotency—that is, the uniqueness—of the request. // // This member is required. IdempotencyToken *string // The Amazon Resource Name (ARN) of the listener for a custom routing endpoint. // // This member is required. ListenerArn *string }
type CreateCustomRoutingEndpointGroupOutput ¶
type CreateCustomRoutingEndpointGroupOutput struct { // The information about the endpoint group created for a custom routing // accelerator. EndpointGroup *types.CustomRoutingEndpointGroup // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type CreateCustomRoutingListenerInput ¶
type CreateCustomRoutingListenerInput struct { // The Amazon Resource Name (ARN) of the accelerator for a custom routing listener. // // This member is required. AcceleratorArn *string // A unique, case-sensitive identifier that you provide to ensure the // idempotency—that is, the uniqueness—of the request. // // This member is required. IdempotencyToken *string // The port range to support for connections from clients to your accelerator. // Separately, you set port ranges for endpoints. For more information, see About // endpoints for custom routing accelerators // (https://docs.aws.amazon.com/global-accelerator/latest/dg/about-custom-routing-endpoints.html). // // This member is required. PortRanges []types.PortRange }
type CreateCustomRoutingListenerOutput ¶
type CreateCustomRoutingListenerOutput struct { // The listener that you've created for a custom routing accelerator. Listener *types.CustomRoutingListener // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type CreateEndpointGroupInput ¶
type CreateEndpointGroupInput struct { // The AWS Region where the endpoint group is located. A listener can have only one // endpoint group in a specific Region. // // This member is required. EndpointGroupRegion *string // A unique, case-sensitive identifier that you provide to ensure the // idempotency—that is, the uniqueness—of the request. // // This member is required. IdempotencyToken *string // The Amazon Resource Name (ARN) of the listener. // // This member is required. ListenerArn *string // The list of endpoint objects. EndpointConfigurations []types.EndpointConfiguration // The time—10 seconds or 30 seconds—between each health check for an endpoint. The // default value is 30. HealthCheckIntervalSeconds *int32 // If the protocol is HTTP/S, then this specifies the path that is the destination // for health check targets. The default value is slash (/). HealthCheckPath *string // The port that AWS Global Accelerator uses to check the health of endpoints that // are part of this endpoint group. The default port is the listener port that this // endpoint group is associated with. If listener port is a list of ports, Global // Accelerator uses the first port in the list. HealthCheckPort *int32 // The protocol that AWS Global Accelerator uses to check the health of endpoints // that are part of this endpoint group. The default value is TCP. HealthCheckProtocol types.HealthCheckProtocol // Override specific listener ports used to route traffic to endpoints that are // part of this endpoint group. For example, you can create a port override in // which the listener receives user traffic on ports 80 and 443, but your // accelerator routes that traffic to ports 1080 and 1443, respectively, on the // endpoints. For more information, see Port overrides // (https://docs.aws.amazon.com/global-accelerator/latest/dg/about-endpoint-groups-port-override.html) // in the AWS Global Accelerator Developer Guide. PortOverrides []types.PortOverride // The number of consecutive health checks required to set the state of a healthy // endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default // value is 3. ThresholdCount *int32 // The percentage of traffic to send to an AWS Region. Additional traffic is // distributed to other endpoint groups for this listener. Use this action to // increase (dial up) or decrease (dial down) traffic to a specific Region. The // percentage is applied to the traffic that would otherwise have been routed to // the Region based on optimal routing. The default value is 100. TrafficDialPercentage *float32 }
type CreateEndpointGroupOutput ¶
type CreateEndpointGroupOutput struct { // The information about the endpoint group that was created. EndpointGroup *types.EndpointGroup // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type CreateListenerInput ¶
type CreateListenerInput struct { // The Amazon Resource Name (ARN) of your accelerator. // // This member is required. AcceleratorArn *string // A unique, case-sensitive identifier that you provide to ensure the // idempotency—that is, the uniqueness—of the request. // // This member is required. IdempotencyToken *string // The list of port ranges to support for connections from clients to your // accelerator. // // This member is required. PortRanges []types.PortRange // The protocol for connections from clients to your accelerator. // // This member is required. Protocol types.Protocol // Client affinity lets you direct all requests from a user to the same endpoint, // if you have stateful applications, regardless of the port and protocol of the // client request. Client affinity gives you control over whether to always route // each client to the same specific endpoint. AWS Global Accelerator uses a // consistent-flow hashing algorithm to choose the optimal endpoint for a // connection. If client affinity is NONE, Global Accelerator uses the "five-tuple" // (5-tuple) properties—source IP address, source port, destination IP address, // destination port, and protocol—to select the hash value, and then chooses the // best endpoint. However, with this setting, if someone uses different ports to // connect to Global Accelerator, their connections might not be always routed to // the same endpoint because the hash value changes. If you want a given client to // always be routed to the same endpoint, set client affinity to SOURCE_IP instead. // When you use the SOURCE_IP setting, Global Accelerator uses the "two-tuple" // (2-tuple) properties— source (client) IP address and destination IP address—to // select the hash value. The default value is NONE. ClientAffinity types.ClientAffinity }
type CreateListenerOutput ¶
type CreateListenerOutput struct { // The listener that you've created. Listener *types.Listener // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeleteAcceleratorInput ¶
type DeleteAcceleratorInput struct { // The Amazon Resource Name (ARN) of an accelerator. // // This member is required. AcceleratorArn *string }
type DeleteAcceleratorOutput ¶
type DeleteAcceleratorOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeleteCustomRoutingAcceleratorInput ¶
type DeleteCustomRoutingAcceleratorInput struct { // The Amazon Resource Name (ARN) of the custom routing accelerator to delete. // // This member is required. AcceleratorArn *string }
type DeleteCustomRoutingAcceleratorOutput ¶
type DeleteCustomRoutingAcceleratorOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeleteCustomRoutingEndpointGroupInput ¶
type DeleteCustomRoutingEndpointGroupInput struct { // The Amazon Resource Name (ARN) of the endpoint group to delete. // // This member is required. EndpointGroupArn *string }
type DeleteCustomRoutingEndpointGroupOutput ¶
type DeleteCustomRoutingEndpointGroupOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeleteCustomRoutingListenerInput ¶
type DeleteCustomRoutingListenerInput struct { // The Amazon Resource Name (ARN) of the listener to delete. // // This member is required. ListenerArn *string }
type DeleteCustomRoutingListenerOutput ¶
type DeleteCustomRoutingListenerOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeleteEndpointGroupInput ¶
type DeleteEndpointGroupInput struct { // The Amazon Resource Name (ARN) of the endpoint group to delete. // // This member is required. EndpointGroupArn *string }
type DeleteEndpointGroupOutput ¶
type DeleteEndpointGroupOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeleteListenerInput ¶
type DeleteListenerInput struct { // The Amazon Resource Name (ARN) of the listener. // // This member is required. ListenerArn *string }
type DeleteListenerOutput ¶
type DeleteListenerOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DenyCustomRoutingTrafficInput ¶
type DenyCustomRoutingTrafficInput struct { // The Amazon Resource Name (ARN) of the endpoint group. // // This member is required. EndpointGroupArn *string // An ID for the endpoint. For custom routing accelerators, this is the virtual // private cloud (VPC) subnet ID. // // This member is required. EndpointId *string // Indicates whether all destination IP addresses and ports for a specified VPC // subnet endpoint cannot receive traffic from a custom routing accelerator. The // value is TRUE or FALSE. When set to TRUE, no destinations in the custom routing // VPC subnet can receive traffic. Note that you cannot specify destination IP // addresses and ports when the value is set to TRUE. When set to FALSE (or not // specified), you must specify a list of destination IP addresses that cannot // receive traffic. A list of ports is optional. If you don't specify a list of // ports, the ports that can accept traffic is the same as the ports configured for // the endpoint group. The default value is FALSE. DenyAllTrafficToEndpoint *bool // A list of specific Amazon EC2 instance IP addresses (destination addresses) in a // subnet that you want to prevent from receiving traffic. The IP addresses must be // a subset of the IP addresses allowed for the VPC subnet associated with the // endpoint group. DestinationAddresses []string // A list of specific Amazon EC2 instance ports (destination ports) in a subnet // endpoint that you want to prevent from receiving traffic. DestinationPorts []int32 }
type DenyCustomRoutingTrafficOutput ¶
type DenyCustomRoutingTrafficOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DeprovisionByoipCidrInput ¶
type DeprovisionByoipCidrInput struct { // The address range, in CIDR notation. The prefix must be the same prefix that you // specified when you provisioned the address range. // // This member is required. Cidr *string }
type DeprovisionByoipCidrOutput ¶
type DeprovisionByoipCidrOutput struct { // Information about the address range. ByoipCidr *types.ByoipCidr // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeAcceleratorAttributesInput ¶
type DescribeAcceleratorAttributesInput struct { // The Amazon Resource Name (ARN) of the accelerator with the attributes that you // want to describe. // // This member is required. AcceleratorArn *string }
type DescribeAcceleratorAttributesOutput ¶
type DescribeAcceleratorAttributesOutput struct { // The attributes of the accelerator. AcceleratorAttributes *types.AcceleratorAttributes // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeAcceleratorInput ¶
type DescribeAcceleratorInput struct { // The Amazon Resource Name (ARN) of the accelerator to describe. // // This member is required. AcceleratorArn *string }
type DescribeAcceleratorOutput ¶
type DescribeAcceleratorOutput struct { // The description of the accelerator. Accelerator *types.Accelerator // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeCustomRoutingAcceleratorAttributesInput ¶
type DescribeCustomRoutingAcceleratorAttributesInput struct { // The Amazon Resource Name (ARN) of the custom routing accelerator to describe the // attributes for. // // This member is required. AcceleratorArn *string }
type DescribeCustomRoutingAcceleratorAttributesOutput ¶
type DescribeCustomRoutingAcceleratorAttributesOutput struct { // The attributes of the custom routing accelerator. AcceleratorAttributes *types.CustomRoutingAcceleratorAttributes // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeCustomRoutingAcceleratorInput ¶
type DescribeCustomRoutingAcceleratorInput struct { // The Amazon Resource Name (ARN) of the accelerator to describe. // // This member is required. AcceleratorArn *string }
type DescribeCustomRoutingAcceleratorOutput ¶
type DescribeCustomRoutingAcceleratorOutput struct { // The description of the custom routing accelerator. Accelerator *types.CustomRoutingAccelerator // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeCustomRoutingEndpointGroupInput ¶
type DescribeCustomRoutingEndpointGroupInput struct { // The Amazon Resource Name (ARN) of the endpoint group to describe. // // This member is required. EndpointGroupArn *string }
type DescribeCustomRoutingEndpointGroupOutput ¶
type DescribeCustomRoutingEndpointGroupOutput struct { // The description of an endpoint group for a custom routing accelerator. EndpointGroup *types.CustomRoutingEndpointGroup // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeCustomRoutingListenerInput ¶
type DescribeCustomRoutingListenerInput struct { // The Amazon Resource Name (ARN) of the listener to describe. // // This member is required. ListenerArn *string }
type DescribeCustomRoutingListenerOutput ¶
type DescribeCustomRoutingListenerOutput struct { // The description of a listener for a custom routing accelerator. Listener *types.CustomRoutingListener // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeEndpointGroupInput ¶
type DescribeEndpointGroupInput struct { // The Amazon Resource Name (ARN) of the endpoint group to describe. // // This member is required. EndpointGroupArn *string }
type DescribeEndpointGroupOutput ¶
type DescribeEndpointGroupOutput struct { // The description of an endpoint group. EndpointGroup *types.EndpointGroup // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type DescribeListenerInput ¶
type DescribeListenerInput struct { // The Amazon Resource Name (ARN) of the listener to describe. // // This member is required. ListenerArn *string }
type DescribeListenerOutput ¶
type DescribeListenerOutput struct { // The description of a listener. Listener *types.Listener // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type EndpointResolver ¶
type EndpointResolver interface { ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error) }
EndpointResolver interface for resolving service endpoints.
func EndpointResolverFromURL ¶
func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver
EndpointResolverFromURL returns an EndpointResolver configured using the provided endpoint url. By default, the resolved endpoint resolver uses the client region as signing region, and the endpoint source is set to EndpointSourceCustom.You can provide functional options to configure endpoint values for the resolved endpoint.
type EndpointResolverFunc ¶
type EndpointResolverFunc func(region string, options EndpointResolverOptions) (aws.Endpoint, error)
EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.
func (EndpointResolverFunc) ResolveEndpoint ¶
func (fn EndpointResolverFunc) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error)
type EndpointResolverOptions ¶
type EndpointResolverOptions = internalendpoints.Options
EndpointResolverOptions is the service endpoint resolver options
type HTTPClient ¶
type HTTPSignerV4 ¶
type HTTPSignerV4 interface { SignHTTP(ctx context.Context, credentials aws.Credentials, r *http.Request, payloadHash string, service string, region string, signingTime time.Time, optFns ...func(*v4.SignerOptions)) error }
type IdempotencyTokenProvider ¶
IdempotencyTokenProvider interface for providing idempotency token
type ListAcceleratorsAPIClient ¶
type ListAcceleratorsAPIClient interface { ListAccelerators(context.Context, *ListAcceleratorsInput, ...func(*Options)) (*ListAcceleratorsOutput, error) }
ListAcceleratorsAPIClient is a client that implements the ListAccelerators operation.
type ListAcceleratorsInput ¶
type ListAcceleratorsInput struct { // The number of Global Accelerator objects that you want to return with this call. // The default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListAcceleratorsOutput ¶
type ListAcceleratorsOutput struct { // The list of accelerators for a customer account. Accelerators []types.Accelerator // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListAcceleratorsPaginator ¶
type ListAcceleratorsPaginator struct {
// contains filtered or unexported fields
}
ListAcceleratorsPaginator is a paginator for ListAccelerators
func NewListAcceleratorsPaginator ¶
func NewListAcceleratorsPaginator(client ListAcceleratorsAPIClient, params *ListAcceleratorsInput, optFns ...func(*ListAcceleratorsPaginatorOptions)) *ListAcceleratorsPaginator
NewListAcceleratorsPaginator returns a new ListAcceleratorsPaginator
func (*ListAcceleratorsPaginator) HasMorePages ¶
func (p *ListAcceleratorsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListAcceleratorsPaginator) NextPage ¶
func (p *ListAcceleratorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListAcceleratorsOutput, error)
NextPage retrieves the next ListAccelerators page.
type ListAcceleratorsPaginatorOptions ¶
type ListAcceleratorsPaginatorOptions struct { // The number of Global Accelerator objects that you want to return with this call. // The default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListAcceleratorsPaginatorOptions is the paginator options for ListAccelerators
type ListByoipCidrsAPIClient ¶
type ListByoipCidrsAPIClient interface { ListByoipCidrs(context.Context, *ListByoipCidrsInput, ...func(*Options)) (*ListByoipCidrsOutput, error) }
ListByoipCidrsAPIClient is a client that implements the ListByoipCidrs operation.
type ListByoipCidrsInput ¶
type ListByoipCidrsInput struct { // The maximum number of results to return with a single call. To retrieve the // remaining results, make another call with the returned nextToken value. MaxResults *int32 // The token for the next page of results. NextToken *string }
type ListByoipCidrsOutput ¶
type ListByoipCidrsOutput struct { // Information about your address ranges. ByoipCidrs []types.ByoipCidr // The token for the next page of results. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListByoipCidrsPaginator ¶
type ListByoipCidrsPaginator struct {
// contains filtered or unexported fields
}
ListByoipCidrsPaginator is a paginator for ListByoipCidrs
func NewListByoipCidrsPaginator ¶
func NewListByoipCidrsPaginator(client ListByoipCidrsAPIClient, params *ListByoipCidrsInput, optFns ...func(*ListByoipCidrsPaginatorOptions)) *ListByoipCidrsPaginator
NewListByoipCidrsPaginator returns a new ListByoipCidrsPaginator
func (*ListByoipCidrsPaginator) HasMorePages ¶
func (p *ListByoipCidrsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListByoipCidrsPaginator) NextPage ¶
func (p *ListByoipCidrsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListByoipCidrsOutput, error)
NextPage retrieves the next ListByoipCidrs page.
type ListByoipCidrsPaginatorOptions ¶
type ListByoipCidrsPaginatorOptions struct { // The maximum number of results to return with a single call. To retrieve the // remaining results, make another call with the returned nextToken value. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListByoipCidrsPaginatorOptions is the paginator options for ListByoipCidrs
type ListCustomRoutingAcceleratorsAPIClient ¶
type ListCustomRoutingAcceleratorsAPIClient interface { ListCustomRoutingAccelerators(context.Context, *ListCustomRoutingAcceleratorsInput, ...func(*Options)) (*ListCustomRoutingAcceleratorsOutput, error) }
ListCustomRoutingAcceleratorsAPIClient is a client that implements the ListCustomRoutingAccelerators operation.
type ListCustomRoutingAcceleratorsInput ¶
type ListCustomRoutingAcceleratorsInput struct { // The number of custom routing Global Accelerator objects that you want to return // with this call. The default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListCustomRoutingAcceleratorsOutput ¶
type ListCustomRoutingAcceleratorsOutput struct { // The list of custom routing accelerators for a customer account. Accelerators []types.CustomRoutingAccelerator // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListCustomRoutingAcceleratorsPaginator ¶
type ListCustomRoutingAcceleratorsPaginator struct {
// contains filtered or unexported fields
}
ListCustomRoutingAcceleratorsPaginator is a paginator for ListCustomRoutingAccelerators
func NewListCustomRoutingAcceleratorsPaginator ¶
func NewListCustomRoutingAcceleratorsPaginator(client ListCustomRoutingAcceleratorsAPIClient, params *ListCustomRoutingAcceleratorsInput, optFns ...func(*ListCustomRoutingAcceleratorsPaginatorOptions)) *ListCustomRoutingAcceleratorsPaginator
NewListCustomRoutingAcceleratorsPaginator returns a new ListCustomRoutingAcceleratorsPaginator
func (*ListCustomRoutingAcceleratorsPaginator) HasMorePages ¶
func (p *ListCustomRoutingAcceleratorsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListCustomRoutingAcceleratorsPaginator) NextPage ¶
func (p *ListCustomRoutingAcceleratorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingAcceleratorsOutput, error)
NextPage retrieves the next ListCustomRoutingAccelerators page.
type ListCustomRoutingAcceleratorsPaginatorOptions ¶
type ListCustomRoutingAcceleratorsPaginatorOptions struct { // The number of custom routing Global Accelerator objects that you want to return // with this call. The default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListCustomRoutingAcceleratorsPaginatorOptions is the paginator options for ListCustomRoutingAccelerators
type ListCustomRoutingEndpointGroupsAPIClient ¶
type ListCustomRoutingEndpointGroupsAPIClient interface { ListCustomRoutingEndpointGroups(context.Context, *ListCustomRoutingEndpointGroupsInput, ...func(*Options)) (*ListCustomRoutingEndpointGroupsOutput, error) }
ListCustomRoutingEndpointGroupsAPIClient is a client that implements the ListCustomRoutingEndpointGroups operation.
type ListCustomRoutingEndpointGroupsInput ¶
type ListCustomRoutingEndpointGroupsInput struct { // The Amazon Resource Name (ARN) of the listener to list endpoint groups for. // // This member is required. ListenerArn *string // The number of endpoint group objects that you want to return with this call. The // default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListCustomRoutingEndpointGroupsOutput ¶
type ListCustomRoutingEndpointGroupsOutput struct { // The list of the endpoint groups associated with a listener for a custom routing // accelerator. EndpointGroups []types.CustomRoutingEndpointGroup // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListCustomRoutingEndpointGroupsPaginator ¶
type ListCustomRoutingEndpointGroupsPaginator struct {
// contains filtered or unexported fields
}
ListCustomRoutingEndpointGroupsPaginator is a paginator for ListCustomRoutingEndpointGroups
func NewListCustomRoutingEndpointGroupsPaginator ¶
func NewListCustomRoutingEndpointGroupsPaginator(client ListCustomRoutingEndpointGroupsAPIClient, params *ListCustomRoutingEndpointGroupsInput, optFns ...func(*ListCustomRoutingEndpointGroupsPaginatorOptions)) *ListCustomRoutingEndpointGroupsPaginator
NewListCustomRoutingEndpointGroupsPaginator returns a new ListCustomRoutingEndpointGroupsPaginator
func (*ListCustomRoutingEndpointGroupsPaginator) HasMorePages ¶
func (p *ListCustomRoutingEndpointGroupsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListCustomRoutingEndpointGroupsPaginator) NextPage ¶
func (p *ListCustomRoutingEndpointGroupsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingEndpointGroupsOutput, error)
NextPage retrieves the next ListCustomRoutingEndpointGroups page.
type ListCustomRoutingEndpointGroupsPaginatorOptions ¶
type ListCustomRoutingEndpointGroupsPaginatorOptions struct { // The number of endpoint group objects that you want to return with this call. The // default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListCustomRoutingEndpointGroupsPaginatorOptions is the paginator options for ListCustomRoutingEndpointGroups
type ListCustomRoutingListenersAPIClient ¶
type ListCustomRoutingListenersAPIClient interface { ListCustomRoutingListeners(context.Context, *ListCustomRoutingListenersInput, ...func(*Options)) (*ListCustomRoutingListenersOutput, error) }
ListCustomRoutingListenersAPIClient is a client that implements the ListCustomRoutingListeners operation.
type ListCustomRoutingListenersInput ¶
type ListCustomRoutingListenersInput struct { // The Amazon Resource Name (ARN) of the accelerator to list listeners for. // // This member is required. AcceleratorArn *string // The number of listener objects that you want to return with this call. The // default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListCustomRoutingListenersOutput ¶
type ListCustomRoutingListenersOutput struct { // The list of listeners for a custom routing accelerator. Listeners []types.CustomRoutingListener // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListCustomRoutingListenersPaginator ¶
type ListCustomRoutingListenersPaginator struct {
// contains filtered or unexported fields
}
ListCustomRoutingListenersPaginator is a paginator for ListCustomRoutingListeners
func NewListCustomRoutingListenersPaginator ¶
func NewListCustomRoutingListenersPaginator(client ListCustomRoutingListenersAPIClient, params *ListCustomRoutingListenersInput, optFns ...func(*ListCustomRoutingListenersPaginatorOptions)) *ListCustomRoutingListenersPaginator
NewListCustomRoutingListenersPaginator returns a new ListCustomRoutingListenersPaginator
func (*ListCustomRoutingListenersPaginator) HasMorePages ¶
func (p *ListCustomRoutingListenersPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListCustomRoutingListenersPaginator) NextPage ¶
func (p *ListCustomRoutingListenersPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingListenersOutput, error)
NextPage retrieves the next ListCustomRoutingListeners page.
type ListCustomRoutingListenersPaginatorOptions ¶
type ListCustomRoutingListenersPaginatorOptions struct { // The number of listener objects that you want to return with this call. The // default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListCustomRoutingListenersPaginatorOptions is the paginator options for ListCustomRoutingListeners
type ListCustomRoutingPortMappingsAPIClient ¶
type ListCustomRoutingPortMappingsAPIClient interface { ListCustomRoutingPortMappings(context.Context, *ListCustomRoutingPortMappingsInput, ...func(*Options)) (*ListCustomRoutingPortMappingsOutput, error) }
ListCustomRoutingPortMappingsAPIClient is a client that implements the ListCustomRoutingPortMappings operation.
type ListCustomRoutingPortMappingsByDestinationAPIClient ¶
type ListCustomRoutingPortMappingsByDestinationAPIClient interface { ListCustomRoutingPortMappingsByDestination(context.Context, *ListCustomRoutingPortMappingsByDestinationInput, ...func(*Options)) (*ListCustomRoutingPortMappingsByDestinationOutput, error) }
ListCustomRoutingPortMappingsByDestinationAPIClient is a client that implements the ListCustomRoutingPortMappingsByDestination operation.
type ListCustomRoutingPortMappingsByDestinationInput ¶
type ListCustomRoutingPortMappingsByDestinationInput struct { // The endpoint IP address in a virtual private cloud (VPC) subnet for which you // want to receive back port mappings. // // This member is required. DestinationAddress *string // The ID for the virtual private cloud (VPC) subnet. // // This member is required. EndpointId *string // The number of destination port mappings that you want to return with this call. // The default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListCustomRoutingPortMappingsByDestinationOutput ¶
type ListCustomRoutingPortMappingsByDestinationOutput struct { // The port mappings for the endpoint IP address that you specified in the request. DestinationPortMappings []types.DestinationPortMapping // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListCustomRoutingPortMappingsByDestinationPaginator ¶
type ListCustomRoutingPortMappingsByDestinationPaginator struct {
// contains filtered or unexported fields
}
ListCustomRoutingPortMappingsByDestinationPaginator is a paginator for ListCustomRoutingPortMappingsByDestination
func NewListCustomRoutingPortMappingsByDestinationPaginator ¶
func NewListCustomRoutingPortMappingsByDestinationPaginator(client ListCustomRoutingPortMappingsByDestinationAPIClient, params *ListCustomRoutingPortMappingsByDestinationInput, optFns ...func(*ListCustomRoutingPortMappingsByDestinationPaginatorOptions)) *ListCustomRoutingPortMappingsByDestinationPaginator
NewListCustomRoutingPortMappingsByDestinationPaginator returns a new ListCustomRoutingPortMappingsByDestinationPaginator
func (*ListCustomRoutingPortMappingsByDestinationPaginator) HasMorePages ¶
func (p *ListCustomRoutingPortMappingsByDestinationPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListCustomRoutingPortMappingsByDestinationPaginator) NextPage ¶
func (p *ListCustomRoutingPortMappingsByDestinationPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsByDestinationOutput, error)
NextPage retrieves the next ListCustomRoutingPortMappingsByDestination page.
type ListCustomRoutingPortMappingsByDestinationPaginatorOptions ¶
type ListCustomRoutingPortMappingsByDestinationPaginatorOptions struct { // The number of destination port mappings that you want to return with this call. // The default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListCustomRoutingPortMappingsByDestinationPaginatorOptions is the paginator options for ListCustomRoutingPortMappingsByDestination
type ListCustomRoutingPortMappingsInput ¶
type ListCustomRoutingPortMappingsInput struct { // The Amazon Resource Name (ARN) of the accelerator to list the custom routing // port mappings for. // // This member is required. AcceleratorArn *string // The Amazon Resource Name (ARN) of the endpoint group to list the custom routing // port mappings for. EndpointGroupArn *string // The number of destination port mappings that you want to return with this call. // The default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListCustomRoutingPortMappingsOutput ¶
type ListCustomRoutingPortMappingsOutput struct { // The token for the next set of results. You receive this token from a previous // call. NextToken *string // The port mappings for a custom routing accelerator. PortMappings []types.PortMapping // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListCustomRoutingPortMappingsPaginator ¶
type ListCustomRoutingPortMappingsPaginator struct {
// contains filtered or unexported fields
}
ListCustomRoutingPortMappingsPaginator is a paginator for ListCustomRoutingPortMappings
func NewListCustomRoutingPortMappingsPaginator ¶
func NewListCustomRoutingPortMappingsPaginator(client ListCustomRoutingPortMappingsAPIClient, params *ListCustomRoutingPortMappingsInput, optFns ...func(*ListCustomRoutingPortMappingsPaginatorOptions)) *ListCustomRoutingPortMappingsPaginator
NewListCustomRoutingPortMappingsPaginator returns a new ListCustomRoutingPortMappingsPaginator
func (*ListCustomRoutingPortMappingsPaginator) HasMorePages ¶
func (p *ListCustomRoutingPortMappingsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListCustomRoutingPortMappingsPaginator) NextPage ¶
func (p *ListCustomRoutingPortMappingsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListCustomRoutingPortMappingsOutput, error)
NextPage retrieves the next ListCustomRoutingPortMappings page.
type ListCustomRoutingPortMappingsPaginatorOptions ¶
type ListCustomRoutingPortMappingsPaginatorOptions struct { // The number of destination port mappings that you want to return with this call. // The default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListCustomRoutingPortMappingsPaginatorOptions is the paginator options for ListCustomRoutingPortMappings
type ListEndpointGroupsAPIClient ¶
type ListEndpointGroupsAPIClient interface { ListEndpointGroups(context.Context, *ListEndpointGroupsInput, ...func(*Options)) (*ListEndpointGroupsOutput, error) }
ListEndpointGroupsAPIClient is a client that implements the ListEndpointGroups operation.
type ListEndpointGroupsInput ¶
type ListEndpointGroupsInput struct { // The Amazon Resource Name (ARN) of the listener. // // This member is required. ListenerArn *string // The number of endpoint group objects that you want to return with this call. The // default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListEndpointGroupsOutput ¶
type ListEndpointGroupsOutput struct { // The list of the endpoint groups associated with a listener. EndpointGroups []types.EndpointGroup // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListEndpointGroupsPaginator ¶
type ListEndpointGroupsPaginator struct {
// contains filtered or unexported fields
}
ListEndpointGroupsPaginator is a paginator for ListEndpointGroups
func NewListEndpointGroupsPaginator ¶
func NewListEndpointGroupsPaginator(client ListEndpointGroupsAPIClient, params *ListEndpointGroupsInput, optFns ...func(*ListEndpointGroupsPaginatorOptions)) *ListEndpointGroupsPaginator
NewListEndpointGroupsPaginator returns a new ListEndpointGroupsPaginator
func (*ListEndpointGroupsPaginator) HasMorePages ¶
func (p *ListEndpointGroupsPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListEndpointGroupsPaginator) NextPage ¶
func (p *ListEndpointGroupsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListEndpointGroupsOutput, error)
NextPage retrieves the next ListEndpointGroups page.
type ListEndpointGroupsPaginatorOptions ¶
type ListEndpointGroupsPaginatorOptions struct { // The number of endpoint group objects that you want to return with this call. The // default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListEndpointGroupsPaginatorOptions is the paginator options for ListEndpointGroups
type ListListenersAPIClient ¶
type ListListenersAPIClient interface { ListListeners(context.Context, *ListListenersInput, ...func(*Options)) (*ListListenersOutput, error) }
ListListenersAPIClient is a client that implements the ListListeners operation.
type ListListenersInput ¶
type ListListenersInput struct { // The Amazon Resource Name (ARN) of the accelerator for which you want to list // listener objects. // // This member is required. AcceleratorArn *string // The number of listener objects that you want to return with this call. The // default value is 10. MaxResults *int32 // The token for the next set of results. You receive this token from a previous // call. NextToken *string }
type ListListenersOutput ¶
type ListListenersOutput struct { // The list of listeners for an accelerator. Listeners []types.Listener // The token for the next set of results. You receive this token from a previous // call. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ListListenersPaginator ¶
type ListListenersPaginator struct {
// contains filtered or unexported fields
}
ListListenersPaginator is a paginator for ListListeners
func NewListListenersPaginator ¶
func NewListListenersPaginator(client ListListenersAPIClient, params *ListListenersInput, optFns ...func(*ListListenersPaginatorOptions)) *ListListenersPaginator
NewListListenersPaginator returns a new ListListenersPaginator
func (*ListListenersPaginator) HasMorePages ¶
func (p *ListListenersPaginator) HasMorePages() bool
HasMorePages returns a boolean indicating whether more pages are available
func (*ListListenersPaginator) NextPage ¶
func (p *ListListenersPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListListenersOutput, error)
NextPage retrieves the next ListListeners page.
type ListListenersPaginatorOptions ¶
type ListListenersPaginatorOptions struct { // The number of listener objects that you want to return with this call. The // default value is 10. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool }
ListListenersPaginatorOptions is the paginator options for ListListeners
type ListTagsForResourceInput ¶
type ListTagsForResourceInput struct { // The Amazon Resource Name (ARN) of the accelerator to list tags for. An ARN // uniquely identifies an accelerator. // // This member is required. ResourceArn *string }
type ListTagsForResourceOutput ¶
type ListTagsForResourceOutput struct { // Root level tag for the Tags parameters. Tags []types.Tag // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type Options ¶
type Options struct { // Set of options to modify how an operation is invoked. These apply to all // operations invoked for this client. Use functional options on operation call to // modify this list for per operation behavior. APIOptions []func(*middleware.Stack) error // Configures the events that will be sent to the configured logger. ClientLogMode aws.ClientLogMode // The credentials object to use when signing requests. Credentials aws.CredentialsProvider // The endpoint options to be used when attempting to resolve an endpoint. EndpointOptions EndpointResolverOptions // The service endpoint resolver. EndpointResolver EndpointResolver // Signature Version 4 (SigV4) Signer HTTPSignerV4 HTTPSignerV4 // Provides idempotency tokens values that will be automatically populated into // idempotent API operations. IdempotencyTokenProvider IdempotencyTokenProvider // The logger writer interface to write logging messages to. Logger logging.Logger // The region to send requests to. (Required) Region string // Retryer guides how HTTP requests should be retried in case of recoverable // failures. When nil the API client will use a default retryer. Retryer aws.Retryer // The HTTP client to invoke API calls with. Defaults to client's default HTTP // implementation if nil. HTTPClient HTTPClient }
func (Options) Copy ¶
Copy creates a clone where the APIOptions list is deep copied.
type ProvisionByoipCidrInput ¶
type ProvisionByoipCidrInput struct { // The public IPv4 address range, in CIDR notation. The most specific IP prefix // that you can specify is /24. The address range cannot overlap with another // address range that you've brought to this or another Region. // // This member is required. Cidr *string // A signed document that proves that you are authorized to bring the specified IP // address range to Amazon using BYOIP. // // This member is required. CidrAuthorizationContext *types.CidrAuthorizationContext }
type ProvisionByoipCidrOutput ¶
type ProvisionByoipCidrOutput struct { // Information about the address range. ByoipCidr *types.ByoipCidr // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type RemoveCustomRoutingEndpointsInput ¶
type RemoveCustomRoutingEndpointsInput struct { // The Amazon Resource Name (ARN) of the endpoint group to remove endpoints from. // // This member is required. EndpointGroupArn *string // The IDs for the endpoints. For custom routing accelerators, endpoint IDs are the // virtual private cloud (VPC) subnet IDs. // // This member is required. EndpointIds []string }
type RemoveCustomRoutingEndpointsOutput ¶
type RemoveCustomRoutingEndpointsOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type ResolveEndpoint ¶
type ResolveEndpoint struct { Resolver EndpointResolver Options EndpointResolverOptions }
func (*ResolveEndpoint) HandleSerialize ¶
func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) ( out middleware.SerializeOutput, metadata middleware.Metadata, err error, )
func (*ResolveEndpoint) ID ¶
func (*ResolveEndpoint) ID() string
type TagResourceInput ¶
type TagResourceInput struct { // The Amazon Resource Name (ARN) of the Global Accelerator resource to add tags // to. An ARN uniquely identifies a resource. // // This member is required. ResourceArn *string // The tags to add to a resource. A tag consists of a key and a value that you // define. // // This member is required. Tags []types.Tag }
type TagResourceOutput ¶
type TagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UntagResourceInput ¶
type UntagResourceInput struct { // The Amazon Resource Name (ARN) of the Global Accelerator resource to remove tags // from. An ARN uniquely identifies a resource. // // This member is required. ResourceArn *string // The tag key pairs that you want to remove from the specified resources. // // This member is required. TagKeys []string }
type UntagResourceOutput ¶
type UntagResourceOutput struct { // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateAcceleratorAttributesInput ¶
type UpdateAcceleratorAttributesInput struct { // The Amazon Resource Name (ARN) of the accelerator that you want to update. // // This member is required. AcceleratorArn *string // Update whether flow logs are enabled. The default value is false. If the value // is true, FlowLogsS3Bucket and FlowLogsS3Prefix must be specified. For more // information, see Flow Logs // (https://docs.aws.amazon.com/global-accelerator/latest/dg/monitoring-global-accelerator.flow-logs.html) // in the AWS Global Accelerator Developer Guide. FlowLogsEnabled *bool // The name of the Amazon S3 bucket for the flow logs. Attribute is required if // FlowLogsEnabled is true. The bucket must exist and have a bucket policy that // grants AWS Global Accelerator permission to write to the bucket. FlowLogsS3Bucket *string // Update the prefix for the location in the Amazon S3 bucket for the flow logs. // Attribute is required if FlowLogsEnabled is true. If you don’t specify a prefix, // the flow logs are stored in the root of the bucket. If you specify slash (/) for // the S3 bucket prefix, the log file bucket folder structure will include a double // slash (//), like the following: s3-bucket_name//AWSLogs/aws_account_id FlowLogsS3Prefix *string }
type UpdateAcceleratorAttributesOutput ¶
type UpdateAcceleratorAttributesOutput struct { // Updated attributes for the accelerator. AcceleratorAttributes *types.AcceleratorAttributes // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateAcceleratorInput ¶
type UpdateAcceleratorInput struct { // The Amazon Resource Name (ARN) of the accelerator to update. // // This member is required. AcceleratorArn *string // Indicates whether an accelerator is enabled. The value is true or false. The // default value is true. If the value is set to true, the accelerator cannot be // deleted. If set to false, the accelerator can be deleted. Enabled *bool // The IP address type, which must be IPv4. IpAddressType types.IpAddressType // The name of the accelerator. The name can have a maximum of 32 characters, must // contain only alphanumeric characters or hyphens (-), and must not begin or end // with a hyphen. Name *string }
type UpdateAcceleratorOutput ¶
type UpdateAcceleratorOutput struct { // Information about the updated accelerator. Accelerator *types.Accelerator // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateCustomRoutingAcceleratorAttributesInput ¶
type UpdateCustomRoutingAcceleratorAttributesInput struct { // The Amazon Resource Name (ARN) of the custom routing accelerator to update // attributes for. // // This member is required. AcceleratorArn *string // Update whether flow logs are enabled. The default value is false. If the value // is true, FlowLogsS3Bucket and FlowLogsS3Prefix must be specified. For more // information, see Flow Logs // (https://docs.aws.amazon.com/global-accelerator/latest/dg/monitoring-global-accelerator.flow-logs.html) // in the AWS Global Accelerator Developer Guide. FlowLogsEnabled *bool // The name of the Amazon S3 bucket for the flow logs. Attribute is required if // FlowLogsEnabled is true. The bucket must exist and have a bucket policy that // grants AWS Global Accelerator permission to write to the bucket. FlowLogsS3Bucket *string // Update the prefix for the location in the Amazon S3 bucket for the flow logs. // Attribute is required if FlowLogsEnabled is true. If you don’t specify a prefix, // the flow logs are stored in the root of the bucket. If you specify slash (/) for // the S3 bucket prefix, the log file bucket folder structure will include a double // slash (//), like the following: DOC-EXAMPLE-BUCKET//AWSLogs/aws_account_id FlowLogsS3Prefix *string }
type UpdateCustomRoutingAcceleratorAttributesOutput ¶
type UpdateCustomRoutingAcceleratorAttributesOutput struct { // Updated custom routing accelerator. AcceleratorAttributes *types.CustomRoutingAcceleratorAttributes // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateCustomRoutingAcceleratorInput ¶
type UpdateCustomRoutingAcceleratorInput struct { // The Amazon Resource Name (ARN) of the accelerator to update. // // This member is required. AcceleratorArn *string // Indicates whether an accelerator is enabled. The value is true or false. The // default value is true. If the value is set to true, the accelerator cannot be // deleted. If set to false, the accelerator can be deleted. Enabled *bool // The value for the address type must be IPv4. IpAddressType types.IpAddressType // The name of the accelerator. The name can have a maximum of 32 characters, must // contain only alphanumeric characters or hyphens (-), and must not begin or end // with a hyphen. Name *string }
type UpdateCustomRoutingAcceleratorOutput ¶
type UpdateCustomRoutingAcceleratorOutput struct { // Information about the updated custom routing accelerator. Accelerator *types.CustomRoutingAccelerator // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateCustomRoutingListenerInput ¶
type UpdateCustomRoutingListenerInput struct { // The Amazon Resource Name (ARN) of the listener to update. // // This member is required. ListenerArn *string // The updated port range to support for connections from clients to your // accelerator. If you remove ports that are currently being used by a subnet // endpoint, the call fails. Separately, you set port ranges for endpoints. For // more information, see About endpoints for custom routing accelerators // (https://docs.aws.amazon.com/global-accelerator/latest/dg/about-custom-routing-endpoints.html). // // This member is required. PortRanges []types.PortRange }
type UpdateCustomRoutingListenerOutput ¶
type UpdateCustomRoutingListenerOutput struct { // Information for the updated listener for a custom routing accelerator. Listener *types.CustomRoutingListener // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateEndpointGroupInput ¶
type UpdateEndpointGroupInput struct { // The Amazon Resource Name (ARN) of the endpoint group. // // This member is required. EndpointGroupArn *string // The list of endpoint objects. A resource must be valid and active when you add // it as an endpoint. EndpointConfigurations []types.EndpointConfiguration // The time—10 seconds or 30 seconds—between each health check for an endpoint. The // default value is 30. HealthCheckIntervalSeconds *int32 // If the protocol is HTTP/S, then this specifies the path that is the destination // for health check targets. The default value is slash (/). HealthCheckPath *string // The port that AWS Global Accelerator uses to check the health of endpoints that // are part of this endpoint group. The default port is the listener port that this // endpoint group is associated with. If the listener port is a list of ports, // Global Accelerator uses the first port in the list. HealthCheckPort *int32 // The protocol that AWS Global Accelerator uses to check the health of endpoints // that are part of this endpoint group. The default value is TCP. HealthCheckProtocol types.HealthCheckProtocol // Override specific listener ports used to route traffic to endpoints that are // part of this endpoint group. For example, you can create a port override in // which the listener receives user traffic on ports 80 and 443, but your // accelerator routes that traffic to ports 1080 and 1443, respectively, on the // endpoints. For more information, see Port overrides // (https://docs.aws.amazon.com/global-accelerator/latest/dg/about-endpoint-groups-port-override.html) // in the AWS Global Accelerator Developer Guide. PortOverrides []types.PortOverride // The number of consecutive health checks required to set the state of a healthy // endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default // value is 3. ThresholdCount *int32 // The percentage of traffic to send to an AWS Region. Additional traffic is // distributed to other endpoint groups for this listener. Use this action to // increase (dial up) or decrease (dial down) traffic to a specific Region. The // percentage is applied to the traffic that would otherwise have been routed to // the Region based on optimal routing. The default value is 100. TrafficDialPercentage *float32 }
type UpdateEndpointGroupOutput ¶
type UpdateEndpointGroupOutput struct { // The information about the endpoint group that was updated. EndpointGroup *types.EndpointGroup // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type UpdateListenerInput ¶
type UpdateListenerInput struct { // The Amazon Resource Name (ARN) of the listener to update. // // This member is required. ListenerArn *string // Client affinity lets you direct all requests from a user to the same endpoint, // if you have stateful applications, regardless of the port and protocol of the // client request. Client affinity gives you control over whether to always route // each client to the same specific endpoint. AWS Global Accelerator uses a // consistent-flow hashing algorithm to choose the optimal endpoint for a // connection. If client affinity is NONE, Global Accelerator uses the "five-tuple" // (5-tuple) properties—source IP address, source port, destination IP address, // destination port, and protocol—to select the hash value, and then chooses the // best endpoint. However, with this setting, if someone uses different ports to // connect to Global Accelerator, their connections might not be always routed to // the same endpoint because the hash value changes. If you want a given client to // always be routed to the same endpoint, set client affinity to SOURCE_IP instead. // When you use the SOURCE_IP setting, Global Accelerator uses the "two-tuple" // (2-tuple) properties— source (client) IP address and destination IP address—to // select the hash value. The default value is NONE. ClientAffinity types.ClientAffinity // The updated list of port ranges for the connections from clients to the // accelerator. PortRanges []types.PortRange // The updated protocol for the connections from clients to the accelerator. Protocol types.Protocol }
type UpdateListenerOutput ¶
type UpdateListenerOutput struct { // Information for the updated listener. Listener *types.Listener // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type WithdrawByoipCidrInput ¶
type WithdrawByoipCidrInput struct { // The address range, in CIDR notation. // // This member is required. Cidr *string }
type WithdrawByoipCidrOutput ¶
type WithdrawByoipCidrOutput struct { // Information about the address pool. ByoipCidr *types.ByoipCidr // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
Source Files ¶
api_client.go api_op_AddCustomRoutingEndpoints.go api_op_AdvertiseByoipCidr.go api_op_AllowCustomRoutingTraffic.go api_op_CreateAccelerator.go api_op_CreateCustomRoutingAccelerator.go api_op_CreateCustomRoutingEndpointGroup.go api_op_CreateCustomRoutingListener.go api_op_CreateEndpointGroup.go api_op_CreateListener.go api_op_DeleteAccelerator.go api_op_DeleteCustomRoutingAccelerator.go api_op_DeleteCustomRoutingEndpointGroup.go api_op_DeleteCustomRoutingListener.go api_op_DeleteEndpointGroup.go api_op_DeleteListener.go api_op_DenyCustomRoutingTraffic.go api_op_DeprovisionByoipCidr.go api_op_DescribeAccelerator.go api_op_DescribeAcceleratorAttributes.go api_op_DescribeCustomRoutingAccelerator.go api_op_DescribeCustomRoutingAcceleratorAttributes.go api_op_DescribeCustomRoutingEndpointGroup.go api_op_DescribeCustomRoutingListener.go api_op_DescribeEndpointGroup.go api_op_DescribeListener.go api_op_ListAccelerators.go api_op_ListByoipCidrs.go api_op_ListCustomRoutingAccelerators.go api_op_ListCustomRoutingEndpointGroups.go api_op_ListCustomRoutingListeners.go api_op_ListCustomRoutingPortMappings.go api_op_ListCustomRoutingPortMappingsByDestination.go api_op_ListEndpointGroups.go api_op_ListListeners.go api_op_ListTagsForResource.go api_op_ProvisionByoipCidr.go api_op_RemoveCustomRoutingEndpoints.go api_op_TagResource.go api_op_UntagResource.go api_op_UpdateAccelerator.go api_op_UpdateAcceleratorAttributes.go api_op_UpdateCustomRoutingAccelerator.go api_op_UpdateCustomRoutingAcceleratorAttributes.go api_op_UpdateCustomRoutingListener.go api_op_UpdateEndpointGroup.go api_op_UpdateListener.go api_op_WithdrawByoipCidr.go deserializers.go doc.go endpoints.go serializers.go validators.go
Directories ¶
Path | Synopsis |
---|---|
internal | |
types |
- Version
- v1.1.1
- Published
- Feb 10, 2021
- Platform
- darwin/amd64
- Imports
- 30 packages
- Last checked
- now –
Tools for package owners.