_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
filters
A list of IP address filter data structures, which each consist of a name, an IP address range, and whether to allow or block mail from it. | STRUCT( "name" VARCHAR, "ip_filter" STRUCT( "policy" VARCHAR, "cidr" VARCHAR ) )[] |
Show child fields- filters[]
Show child fields- filters[].ip_filter
A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them. Show child fields- filters[].ip_filter.cidr
A single IP address or a range of IP addresses to block or allow, specified in Classless Inter-Domain Routing (CIDR) notation. An example of a single email address is 10.0.0.1. An example of a range of IP addresses is 10.0.0.1/24. For more information about CIDR notation, see RFC 2317.
- filters[].ip_filter.policy
Indicates whether to block or allow incoming mail from the specified IP addresses.
- filters[].name
The name of the IP address filter. The name must meet the following requirements: -
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). -
Start and end with a letter or number. -
Contain 64 characters or fewer.
|