CfnApplicationInstanceMixinProps

class aws_cdk.mixins_preview.aws_panorama.mixins.CfnApplicationInstanceMixinProps(*, application_instance_id_to_replace=None, default_runtime_context_device=None, description=None, manifest_overrides_payload=None, manifest_payload=None, name=None, runtime_role_arn=None, tags=None)

Bases: object

Properties for CfnApplicationInstancePropsMixin.

Parameters:
  • application_instance_id_to_replace (Optional[str]) – The ID of an application instance to replace with the new instance.

  • default_runtime_context_device (Optional[str]) – The device’s ID.

  • description (Optional[str]) – A description for the application instance.

  • manifest_overrides_payload (Union[IResolvable, ManifestOverridesPayloadProperty, Dict[str, Any], None]) – Setting overrides for the application manifest.

  • manifest_payload (Union[IResolvable, ManifestPayloadProperty, Dict[str, Any], None]) – The application’s manifest document.

  • name (Optional[str]) – A name for the application instance.

  • runtime_role_arn (Optional[str]) – The ARN of a runtime role for the application instance.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the application instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.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_panorama import mixins as panorama_mixins

cfn_application_instance_mixin_props = panorama_mixins.CfnApplicationInstanceMixinProps(
    application_instance_id_to_replace="applicationInstanceIdToReplace",
    default_runtime_context_device="defaultRuntimeContextDevice",
    description="description",
    manifest_overrides_payload=panorama_mixins.CfnApplicationInstancePropsMixin.ManifestOverridesPayloadProperty(
        payload_data="payloadData"
    ),
    manifest_payload=panorama_mixins.CfnApplicationInstancePropsMixin.ManifestPayloadProperty(
        payload_data="payloadData"
    ),
    name="name",
    runtime_role_arn="runtimeRoleArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

application_instance_id_to_replace

The ID of an application instance to replace with the new instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-applicationinstanceidtoreplace

default_runtime_context_device

The device’s ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-defaultruntimecontextdevice

description

A description for the application instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-description

manifest_overrides_payload

Setting overrides for the application manifest.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-manifestoverridespayload

manifest_payload

The application’s manifest document.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-manifestpayload

name

A name for the application instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-name

runtime_role_arn

The ARN of a runtime role for the application instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-applicationinstance.html#cfn-panorama-applicationinstance-runtimerolearn

tags

Tags for the application instance.

See:

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