Struct aws_sdk_apigateway::output::CreateUsagePlanKeyOutput [−][src]
#[non_exhaustive]pub struct CreateUsagePlanKeyOutput {
pub id: Option<String>,
pub type: Option<String>,
pub value: Option<String>,
pub name: Option<String>,
}
Expand description
Represents a usage plan key to identify a plan customer.
To associate an API stage with a selected API key in a usage plan, you must create a UsagePlanKey resource to represent the selected ApiKey
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The Id of a usage plan key.
type: Option<String>
The type of a usage plan key. Currently, the valid key type is API_KEY
.
value: Option<String>
The value of a usage plan key.
name: Option<String>
The name of a usage plan key.
Implementations
The type of a usage plan key. Currently, the valid key type is API_KEY
.
Creates a new builder-style object to manufacture CreateUsagePlanKeyOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateUsagePlanKeyOutput
impl Send for CreateUsagePlanKeyOutput
impl Sync for CreateUsagePlanKeyOutput
impl Unpin for CreateUsagePlanKeyOutput
impl UnwindSafe for CreateUsagePlanKeyOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
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