Struct aws_sdk_securityhub::model::AwsApiGatewayStageDetails[][src]

#[non_exhaustive]
pub struct AwsApiGatewayStageDetails {
Show 16 fields pub deployment_id: Option<String>, pub client_certificate_id: Option<String>, pub stage_name: Option<String>, pub description: Option<String>, pub cache_cluster_enabled: bool, pub cache_cluster_size: Option<String>, pub cache_cluster_status: Option<String>, pub method_settings: Option<Vec<AwsApiGatewayMethodSettings>>, pub variables: Option<HashMap<String, String>>, pub documentation_version: Option<String>, pub access_log_settings: Option<AwsApiGatewayAccessLogSettings>, pub canary_settings: Option<AwsApiGatewayCanarySettings>, pub tracing_enabled: bool, pub created_date: Option<String>, pub last_updated_date: Option<String>, pub web_acl_arn: Option<String>,
}
Expand description

Provides information about a version 1 Amazon API Gateway stage.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
deployment_id: Option<String>

The identifier of the deployment that the stage points to.

client_certificate_id: Option<String>

The identifier of the client certificate for the stage.

stage_name: Option<String>

The name of the stage.

description: Option<String>

A description of the stage.

cache_cluster_enabled: bool

Indicates whether a cache cluster is enabled for the stage.

cache_cluster_size: Option<String>

If a cache cluster is enabled, the size of the cache cluster.

cache_cluster_status: Option<String>

If a cache cluster is enabled, the status of the cache cluster.

method_settings: Option<Vec<AwsApiGatewayMethodSettings>>

Defines the method settings for the stage.

variables: Option<HashMap<String, String>>

A map that defines the stage variables for the stage.

Variable names can have alphanumeric and underscore characters.

Variable values can contain the following characters:

  • Uppercase and lowercase letters

  • Numbers

  • Special characters -._~:/?#&=,

documentation_version: Option<String>

The version of the API documentation that is associated with the stage.

access_log_settings: Option<AwsApiGatewayAccessLogSettings>

Settings for logging access for the stage.

canary_settings: Option<AwsApiGatewayCanarySettings>

Information about settings for canary deployment in the stage.

tracing_enabled: bool

Indicates whether active tracing with X-Ray is enabled for the stage.

created_date: Option<String>

Indicates when the stage was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

last_updated_date: Option<String>

Indicates when the stage was most recently updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

web_acl_arn: Option<String>

The ARN of the web ACL associated with the stage.

Implementations

The identifier of the deployment that the stage points to.

The identifier of the client certificate for the stage.

The name of the stage.

A description of the stage.

Indicates whether a cache cluster is enabled for the stage.

If a cache cluster is enabled, the size of the cache cluster.

If a cache cluster is enabled, the status of the cache cluster.

Defines the method settings for the stage.

A map that defines the stage variables for the stage.

Variable names can have alphanumeric and underscore characters.

Variable values can contain the following characters:

  • Uppercase and lowercase letters

  • Numbers

  • Special characters -._~:/?#&=,

The version of the API documentation that is associated with the stage.

Settings for logging access for the stage.

Information about settings for canary deployment in the stage.

Indicates whether active tracing with X-Ray is enabled for the stage.

Indicates when the stage was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

Indicates when the stage was most recently updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

The ARN of the web ACL associated with the stage.

Creates a new builder-style object to manufacture AwsApiGatewayStageDetails

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more