CfnUsagePlanKeyMixinProps
- class aws_cdk.mixins_preview.aws_apigateway.mixins.CfnUsagePlanKeyMixinProps(*, key_id=None, key_type=None, usage_plan_id=None)
Bases:
objectProperties for CfnUsagePlanKeyPropsMixin.
- Parameters:
key_id (
Optional[str]) – The Id of the UsagePlanKey resource.key_type (
Optional[str]) – The type of a UsagePlanKey resource for a plan customer.usage_plan_id (
Optional[str]) – The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_apigateway import mixins as apigateway_mixins cfn_usage_plan_key_mixin_props = apigateway_mixins.CfnUsagePlanKeyMixinProps( key_id="keyId", key_type="keyType", usage_plan_id="usagePlanId" )
Attributes
- key_id
The Id of the UsagePlanKey resource.
- key_type
The type of a UsagePlanKey resource for a plan customer.
- usage_plan_id
The Id of the UsagePlan resource representing the usage plan containing the UsagePlanKey resource representing a plan customer.