_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 )[] )[] ) ) |
api_cache
The ApiCache object. | STRUCT( "ttl" BIGINT, "api_caching_behavior" VARCHAR, "transit_encryption_enabled" BOOLEAN, "at_rest_encryption_enabled" BOOLEAN, "type" VARCHAR, "status" VARCHAR, "health_metrics_config" VARCHAR ) |
Show child fields- api_cache.api_caching_behavior
Caching behavior.
- api_cache.at_rest_encryption_enabled
At-rest encryption flag for cache. You cannot update this setting after creation.
- api_cache.health_metrics_config
Controls how cache health metrics will be emitted to CloudWatch. Cache health metrics include: -
NetworkBandwidthOutAllowanceExceeded: The network packets dropped because the throughput exceeded the aggregated bandwidth limit. This is useful for diagnosing bottlenecks in a cache configuration. -
EngineCPUUtilization: The CPU utilization (percentage) allocated to the Redis process. This is useful for diagnosing bottlenecks in a cache configuration. Metrics will be recorded by API ID. You can set the value to ENABLED or DISABLED.
- api_cache.status
The cache instance status. -
AVAILABLE: The instance is available for use. -
CREATING: The instance is currently creating. -
DELETING: The instance is currently deleting. -
MODIFYING: The instance is currently modifying. -
FAILED: The instance has failed creation.
- api_cache.transit_encryption_enabled
Transit encryption flag when connecting to cache. You cannot update this setting after creation.
- api_cache.ttl
TTL in seconds for cache entries. Valid values are 1–3,600 seconds.
- api_cache.type
The cache instance type. Valid values are Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used. The following legacy instance types are available, but their use is discouraged: -
T2_SMALL: A t2.small instance type. -
T2_MEDIUM: A t2.medium instance type. -
R4_LARGE: A r4.large instance type. -
R4_XLARGE: A r4.xlarge instance type. -
R4_2XLARGE: A r4.2xlarge instance type. -
R4_4XLARGE: A r4.4xlarge instance type. -
R4_8XLARGE: A r4.8xlarge instance type.
|