Package software.amazon.awscdk.cxapi
Interface MissingContext
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 MissingContext.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
           date="2025-11-04T09:27:32.513Z")
@Stability(Deprecated)
@Deprecated
public interface MissingContext
extends software.amazon.jsii.JsiiSerializable
Deprecated.
moved to package 'cloud-assembly-schema'
(deprecated) Backwards compatibility for when 
MissingContext was defined here.
 This is necessary because its used as an input in the stable
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cxapi.*;
 Object props;
 MissingContext missingContext = MissingContext.builder()
         .key("key")
         .props(Map.of(
                 "propsKey", props))
         .provider("provider")
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. - 
Method Summary
Modifier and TypeMethodDescriptionstatic MissingContext.Builderbuilder()Deprecated.getKey()Deprecated.getProps()Deprecated.Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getKey
Deprecated.(deprecated) The missing context key. - 
getProps
Deprecated.(deprecated) A set of provider-specific options.(This is the old untyped definition, which is necessary for backwards compatibility. See cxschema for a type definition.)
 - 
getProvider
Deprecated.(deprecated) The provider from which we expect this context key to be obtained.(This is the old untyped definition, which is necessary for backwards compatibility. See cxschema for a type definition.)
 - 
builder
Deprecated.- Returns:
 - a 
MissingContext.BuilderofMissingContext 
 
 -