IpSetArgs

data class IpSetArgs(val addresses: Output<List<String>>? = null, val description: Output<String>? = null, val ipAddressVersion: Output<IpSetIpAddressVersion>? = null, val name: Output<String>? = null, val scope: Output<IpSetScope>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<IpSetArgs>

Contains a list of IP addresses. This can be either IPV4 or IPV6. The list will be mutually

Constructors

Link copied to clipboard
constructor(addresses: Output<List<String>>? = null, description: Output<String>? = null, ipAddressVersion: Output<IpSetIpAddressVersion>? = null, name: Output<String>? = null, scope: Output<IpSetScope>? = null, tags: Output<List<TagArgs>>? = null)

Properties

Link copied to clipboard
val addresses: Output<List<String>>? = null

List of IPAddresses.

Link copied to clipboard
val description: Output<String>? = null

A description of the IP set that helps with identification.

Link copied to clipboard

The version of the IP addresses, either IPV4 or IPV6 .

Link copied to clipboard
val name: Output<String>? = null

The name of the IP set. You cannot change the name of an IPSet after you create it.

Link copied to clipboard
val scope: Output<IpSetScope>? = null

Specifies whether this is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AWS AppSync GraphQL API, an Amazon Cognito user pool, an AWS App Runner service, or an AWS Verified Access instance. Valid Values are CLOUDFRONT and REGIONAL .

Link copied to clipboard
val tags: Output<List<TagArgs>>? = null

Key:value pairs associated with an AWS resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each AWS resource.

Functions

Link copied to clipboard
open override fun toJava(): IpSetArgs