CfnApplicationInstancePropsMixin
- class aws_cdk.mixins_preview.aws_panorama.mixins.CfnApplicationInstancePropsMixin(props, *, strategy=None)
Bases:
MixinEnd 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:
- 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:
props (
Union[CfnApplicationInstanceMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- 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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
ManifestOverridesPayloadProperty
- class CfnApplicationInstancePropsMixin.ManifestOverridesPayloadProperty(*, payload_data=None)
Bases:
objectParameter 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:
- 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
ManifestPayloadProperty
- class CfnApplicationInstancePropsMixin.ManifestPayloadProperty(*, payload_data=None)
Bases:
objectA 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 thegraphsfolder in your application source.- Parameters:
payload_data (
Optional[str]) – The application manifest.- See:
- 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