Skip to content

MissingContext

Represents a missing piece of context.

Initializer

import com.aliyun.ros.cdk.assembly.schema.MissingContext;
MissingContext.builder()
    .key(java.lang.String)
    .props(AmiContextQuery)
    .props(AvailabilityZonesContextQuery)
    .props(HostedZoneContextQuery)
    .props(SSMParameterContextQuery)
    .props(VpcContextQuery)
    .props(EndpointServiceAvailabilityZonesContextQuery)
    .provider(ContextProvider)
    .build();

Properties

Name Type Description
key java.lang.String The missing context key.
props AmiContextQuery OR AvailabilityZonesContextQuery OR HostedZoneContextQuery OR SSMParameterContextQuery OR VpcContextQuery OR EndpointServiceAvailabilityZonesContextQuery A set of provider-specific options.
provider ContextProvider The provider from which we expect this context key to be obtained.

keyRequired

public java.lang.String getKey();
  • Type: java.lang.String

The missing context key.


propsRequired

public java.lang.Object getProps();

A set of provider-specific options.


providerRequired

public ContextProvider getProvider();

The provider from which we expect this context key to be obtained.