Skip to content

Type definitions#

Index > AppConfigData > Type definitions

Auto-generated documentation for AppConfigData type annotations stubs module types-boto3-appconfigdata.

GetLatestConfigurationRequestTypeDef#

# GetLatestConfigurationRequestTypeDef TypedDict usage example

from types_boto3_appconfigdata.type_defs import GetLatestConfigurationRequestTypeDef


def get_value() -> GetLatestConfigurationRequestTypeDef:
    return {
        "ConfigurationToken": ...,
    }


# GetLatestConfigurationRequestTypeDef definition

class GetLatestConfigurationRequestTypeDef(TypedDict):
    ConfigurationToken: str,

ResponseMetadataTypeDef#

# ResponseMetadataTypeDef TypedDict usage example

from types_boto3_appconfigdata.type_defs import ResponseMetadataTypeDef


def get_value() -> ResponseMetadataTypeDef:
    return {
        "RequestId": ...,
    }


# ResponseMetadataTypeDef definition

class ResponseMetadataTypeDef(TypedDict):
    RequestId: str,
    HTTPStatusCode: int,
    HTTPHeaders: Dict[str, str],
    RetryAttempts: int,
    HostId: NotRequired[str],

StartConfigurationSessionRequestTypeDef#

# StartConfigurationSessionRequestTypeDef TypedDict usage example

from types_boto3_appconfigdata.type_defs import StartConfigurationSessionRequestTypeDef


def get_value() -> StartConfigurationSessionRequestTypeDef:
    return {
        "ApplicationIdentifier": ...,
    }


# StartConfigurationSessionRequestTypeDef definition

class StartConfigurationSessionRequestTypeDef(TypedDict):
    ApplicationIdentifier: str,
    EnvironmentIdentifier: str,
    ConfigurationProfileIdentifier: str,
    RequiredMinimumPollIntervalInSeconds: NotRequired[int],

GetLatestConfigurationResponseTypeDef#

# GetLatestConfigurationResponseTypeDef TypedDict usage example

from types_boto3_appconfigdata.type_defs import GetLatestConfigurationResponseTypeDef


def get_value() -> GetLatestConfigurationResponseTypeDef:
    return {
        "NextPollConfigurationToken": ...,
    }


# GetLatestConfigurationResponseTypeDef definition

class GetLatestConfigurationResponseTypeDef(TypedDict):
    NextPollConfigurationToken: str,
    NextPollIntervalInSeconds: int,
    ContentType: str,
    Configuration: StreamingBody,
    VersionLabel: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

StartConfigurationSessionResponseTypeDef#

# StartConfigurationSessionResponseTypeDef TypedDict usage example

from types_boto3_appconfigdata.type_defs import StartConfigurationSessionResponseTypeDef


def get_value() -> StartConfigurationSessionResponseTypeDef:
    return {
        "InitialConfigurationToken": ...,
    }


# StartConfigurationSessionResponseTypeDef definition

class StartConfigurationSessionResponseTypeDef(TypedDict):
    InitialConfigurationToken: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef