CfnRoleAliasMixinProps
- class aws_cdk.mixins_preview.aws_iot.mixins.CfnRoleAliasMixinProps(*, credential_duration_seconds=None, role_alias=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnRoleAliasPropsMixin.
- Parameters:
credential_duration_seconds (
Union[int,float,None]) – The number of seconds for which the credential is valid. Default: - 3600role_alias (
Optional[str]) – The role alias.role_arn (
Optional[str]) – The role ARN.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-rolealias.html
- 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_iot import mixins as iot_mixins cfn_role_alias_mixin_props = iot_mixins.CfnRoleAliasMixinProps( credential_duration_seconds=123, role_alias="roleAlias", role_arn="roleArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- credential_duration_seconds
The number of seconds for which the credential is valid.
- role_alias
The role alias.
- role_arn
The role ARN.