CfnApplicationInstancePropsMixin

class aws_cdk.mixins_preview.aws_panorama.mixins.CfnApplicationInstancePropsMixin(props, *, strategy=None)

Bases: Mixin

End of support notice: On May 31, 2026, AWS will end support for AWS Panorama .

After May 31, 2026, .. epigraph:

you will no longer be able to access the AWS Panorama console or AWS Panorama resources. For more information, see `AWS Panorama end of support <https://docs.aws.amazon.com/panorama/latest/dev/panorama-end-of-support.html>`_ .

Creates an application instance and deploys it to a device.

see:

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

cloudformationResource:

AWS::Panorama::ApplicationInstance

mixin:

true

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 import mixins
from aws_cdk.mixins_preview.aws_panorama import mixins as panorama_mixins

cfn_application_instance_props_mixin = panorama_mixins.CfnApplicationInstancePropsMixin(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"
    )]
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::Panorama::ApplicationInstance.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['applicationInstanceIdToReplace', 'defaultRuntimeContextDevice', 'description', 'manifestOverridesPayload', 'manifestPayload', 'name', 'runtimeRoleArn', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

ManifestOverridesPayloadProperty

class CfnApplicationInstancePropsMixin.ManifestOverridesPayloadProperty(*, payload_data=None)

Bases: object

Parameter overrides for an application instance.

This is a JSON document that has a single key ( PayloadData ) where the value is an escaped string representation of the overrides document.

Parameters:

payload_data (Optional[str]) – The overrides document.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-applicationinstance-manifestoverridespayload.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

manifest_overrides_payload_property = panorama_mixins.CfnApplicationInstancePropsMixin.ManifestOverridesPayloadProperty(
    payload_data="payloadData"
)

Attributes

payload_data

The overrides document.

See:

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

ManifestPayloadProperty

class CfnApplicationInstancePropsMixin.ManifestPayloadProperty(*, payload_data=None)

Bases: object

A application verion’s manifest file.

This is a JSON document that has a single key ( PayloadData ) where the value is an escaped string representation of the application manifest ( graph.json ). This file is located in the graphs folder in your application source.

Parameters:

payload_data (Optional[str]) – The application manifest.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-panorama-applicationinstance-manifestpayload.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

manifest_payload_property = panorama_mixins.CfnApplicationInstancePropsMixin.ManifestPayloadProperty(
    payload_data="payloadData"
)

Attributes

payload_data

The application manifest.

See:

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