Struct cfn::aws::apigateway::ApiKeyProperties [] [src]

pub struct ApiKeyProperties {
    pub customer_id: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub enabled: Option<Value<bool>>,
    pub generate_distinct_id: Option<Value<bool>>,
    pub name: Option<Value<String>>,
    pub stage_keys: Option<ValueList<StageKey>>,
}

Properties for the ApiKey resource.

Fields

Property CustomerId.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Enabled.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property GenerateDistinctId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Name.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property StageKeys.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for ApiKeyProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ApiKeyProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for ApiKeyProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for ApiKeyProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ApiKeyProperties> for ApiKey
[src]

[src]

Performs the conversion.

Auto Trait Implementations