CfnApplicationMixinProps

class aws_cdk.mixins_preview.aws_iotfleethub.mixins.CfnApplicationMixinProps(*, application_description=None, application_name=None, role_arn=None, tags=None)

Bases: object

Properties for CfnApplicationPropsMixin.

Parameters:
  • application_description (Optional[str]) – An optional description of the web application.

  • application_name (Optional[str]) – The name of the web application.

  • role_arn (Optional[str]) – The ARN of the role that the web application assumes when it interacts with AWS IoT Core . .. epigraph:: The name of the role must be in the form FleetHub_random_string . Pattern: ^arn:[!-~]+$

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A set of key/value pairs that you can use to manage the web application resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.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_iotfleethub import mixins as iotfleethub_mixins

cfn_application_mixin_props = iotfleethub_mixins.CfnApplicationMixinProps(
    application_description="applicationDescription",
    application_name="applicationName",
    role_arn="roleArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

application_description

An optional description of the web application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-applicationdescription

application_name

The name of the web application.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-applicationname

role_arn

The ARN of the role that the web application assumes when it interacts with AWS IoT Core .

The name of the role must be in the form FleetHub_random_string .

Pattern: ^arn:[!-~]+$

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-rolearn

tags

A set of key/value pairs that you can use to manage the web application resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#cfn-iotfleethub-application-tags