Skip to content

Create Anycast Ip List

cloudfront_create_anycast_ip_list R Documentation

Creates an Anycast static IP list

Description

Creates an Anycast static IP list.

Usage

cloudfront_create_anycast_ip_list(Name, IpCount, Tags)

Arguments

Name

[required] Name of the Anycast static IP list.

IpCount

[required] The number of static IP addresses that are allocated to the Anycast static IP list.

Tags

Value

A list with the following syntax:

list(
  AnycastIpList = list(
    Id = "string",
    Name = "string",
    Status = "string",
    Arn = "string",
    AnycastIps = list(
      "string"
    ),
    IpCount = 123,
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    )
  ),
  ETag = "string"
)

Request syntax

svc$create_anycast_ip_list(
  Name = "string",
  IpCount = 123,
  Tags = list(
    Items = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)