CfnSupportPermitMixinProps
- class aws_cdk.cfn_property_mixins.aws_supportauthz.CfnSupportPermitMixinProps(*, description=None, name=None, permit=None, signing_key_info=None, support_case_display_id=None, tags=None)
Bases:
objectProperties for CfnSupportPermitPropsMixin.
- Parameters:
description (
Optional[str]) – An optional description of the support permit.name (
Optional[str]) – The name of the support permit.permit (
Union[IResolvable,PermitProperty,Dict[str,Any],None]) – The grant definition: which actions on which resources, optionally constrained by time conditions.signing_key_info (
Union[IResolvable,SigningKeyInfoProperty,Dict[str,Any],None]) – The signing key used by the permit. Exactly one key type must be provided.support_case_display_id (
Optional[str]) – The support case display identifier associated with the permit. When provided, the permit is linked to the specified AWS Support case.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of key-value pairs to apply to this resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_supportauthz as supportauthz # all_actions: Any # all_resources_in_region: Any cfn_support_permit_mixin_props = supportauthz.CfnSupportPermitMixinProps( description="description", name="name", permit=supportauthz.CfnSupportPermitPropsMixin.PermitProperty( actions=supportauthz.CfnSupportPermitPropsMixin.ActionSetProperty( actions=["actions"], all_actions=all_actions ), conditions=[supportauthz.CfnSupportPermitPropsMixin.ConditionProperty( allow_after="allowAfter", allow_before="allowBefore" )], resources=supportauthz.CfnSupportPermitPropsMixin.ResourceSetProperty( all_resources_in_region=all_resources_in_region, resources=["resources"] ) ), signing_key_info=supportauthz.CfnSupportPermitPropsMixin.SigningKeyInfoProperty( kms_key="kmsKey" ), support_case_display_id="supportCaseDisplayId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
An optional description of the support permit.
- name
The name of the support permit.
- permit
which actions on which resources, optionally constrained by time conditions.
- signing_key_info
The signing key used by the permit.
Exactly one key type must be provided.
- support_case_display_id
The support case display identifier associated with the permit.
When provided, the permit is linked to the specified AWS Support case.
- tags
A list of key-value pairs to apply to this resource.