Skip to content

ConfigServiceClient

Index > ConfigService > ConfigServiceClient

Auto-generated documentation for ConfigService type annotations stubs module types-aiobotocore-config.

ConfigServiceClient

Type annotations and code completion for session.client("config") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_config.client import ConfigServiceClient

session = Session()
async with session.client("config") as client:
    client: ConfigServiceClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("config").exceptions structure.

Usage example
async with session.client("config") as client:
    try:
        do_something(client)
    except (
            client.ClientError,
        client.ConformancePackTemplateValidationException,
        client.InsufficientDeliveryPolicyException,
        client.InsufficientPermissionsException,
        client.InvalidConfigurationRecorderNameException,
        client.InvalidDeliveryChannelNameException,
        client.InvalidExpressionException,
        client.InvalidLimitException,
        client.InvalidNextTokenException,
        client.InvalidParameterValueException,
        client.InvalidRecordingGroupException,
        client.InvalidResultTokenException,
        client.InvalidRoleException,
        client.InvalidS3KeyPrefixException,
        client.InvalidS3KmsKeyArnException,
        client.InvalidSNSTopicARNException,
        client.InvalidTimeRangeException,
        client.LastDeliveryChannelDeleteFailedException,
        client.LimitExceededException,
        client.MaxActiveResourcesExceededException,
        client.MaxNumberOfConfigRulesExceededException,
        client.MaxNumberOfConfigurationRecordersExceededException,
        client.MaxNumberOfConformancePacksExceededException,
        client.MaxNumberOfDeliveryChannelsExceededException,
        client.MaxNumberOfOrganizationConfigRulesExceededException,
        client.MaxNumberOfOrganizationConformancePacksExceededException,
        client.MaxNumberOfRetentionConfigurationsExceededException,
        client.NoAvailableConfigurationRecorderException,
        client.NoAvailableDeliveryChannelException,
        client.NoAvailableOrganizationException,
        client.NoRunningConfigurationRecorderException,
        client.NoSuchBucketException,
        client.NoSuchConfigRuleException,
        client.NoSuchConfigRuleInConformancePackException,
        client.NoSuchConfigurationAggregatorException,
        client.NoSuchConfigurationRecorderException,
        client.NoSuchConformancePackException,
        client.NoSuchDeliveryChannelException,
        client.NoSuchOrganizationConfigRuleException,
        client.NoSuchOrganizationConformancePackException,
        client.NoSuchRemediationConfigurationException,
        client.NoSuchRemediationExceptionException,
        client.NoSuchRetentionConfigurationException,
        client.OrganizationAccessDeniedException,
        client.OrganizationAllFeaturesNotEnabledException,
        client.OrganizationConformancePackTemplateValidationException,
        client.OversizedConfigurationItemException,
        client.RemediationInProgressException,
        client.ResourceConcurrentModificationException,
        client.ResourceInUseException,
        client.ResourceNotDiscoveredException,
        client.ResourceNotFoundException,
        client.TooManyTagsException,
        client.ValidationException,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_config.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods

batch_get_aggregate_resource_config

Returns the current configuration items for resources that are present in your Config aggregator.

Type annotations and code completion for session.client("config").batch_get_aggregate_resource_config method. boto3 documentation

Method definition
await def batch_get_aggregate_resource_config(
    self,
    *,
    ConfigurationAggregatorName: str,
    ResourceIdentifiers: Sequence[AggregateResourceIdentifierTypeDef],  # (1)
) -> BatchGetAggregateResourceConfigResponseTypeDef:  # (2)
    ...
  1. See AggregateResourceIdentifierTypeDef
  2. See BatchGetAggregateResourceConfigResponseTypeDef
Usage example with kwargs
kwargs: BatchGetAggregateResourceConfigRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
    "ResourceIdentifiers": ...,
}

parent.batch_get_aggregate_resource_config(**kwargs)
  1. See BatchGetAggregateResourceConfigRequestRequestTypeDef

batch_get_resource_config

Returns the BaseConfigurationItem for one or more requested resources.

Type annotations and code completion for session.client("config").batch_get_resource_config method. boto3 documentation

Method definition
await def batch_get_resource_config(
    self,
    *,
    resourceKeys: Sequence[ResourceKeyTypeDef],  # (1)
) -> BatchGetResourceConfigResponseTypeDef:  # (2)
    ...
  1. See ResourceKeyTypeDef
  2. See BatchGetResourceConfigResponseTypeDef
Usage example with kwargs
kwargs: BatchGetResourceConfigRequestRequestTypeDef = {  # (1)
    "resourceKeys": ...,
}

parent.batch_get_resource_config(**kwargs)
  1. See BatchGetResourceConfigRequestRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("config").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("config").close method. boto3 documentation

Method definition
await def close(
    self,
) -> None:
    ...

delete_aggregation_authorization

Deletes the authorization granted to the specified configuration aggregator account in a specified region.

Type annotations and code completion for session.client("config").delete_aggregation_authorization method. boto3 documentation

Method definition
await def delete_aggregation_authorization(
    self,
    *,
    AuthorizedAccountId: str,
    AuthorizedAwsRegion: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteAggregationAuthorizationRequestRequestTypeDef = {  # (1)
    "AuthorizedAccountId": ...,
    "AuthorizedAwsRegion": ...,
}

parent.delete_aggregation_authorization(**kwargs)
  1. See DeleteAggregationAuthorizationRequestRequestTypeDef

delete_config_rule

Deletes the specified Config rule and all of its evaluation results.

Type annotations and code completion for session.client("config").delete_config_rule method. boto3 documentation

Method definition
await def delete_config_rule(
    self,
    *,
    ConfigRuleName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteConfigRuleRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.delete_config_rule(**kwargs)
  1. See DeleteConfigRuleRequestRequestTypeDef

delete_configuration_aggregator

Deletes the specified configuration aggregator and the aggregated data associated with the aggregator.

Type annotations and code completion for session.client("config").delete_configuration_aggregator method. boto3 documentation

Method definition
await def delete_configuration_aggregator(
    self,
    *,
    ConfigurationAggregatorName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteConfigurationAggregatorRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.delete_configuration_aggregator(**kwargs)
  1. See DeleteConfigurationAggregatorRequestRequestTypeDef

delete_configuration_recorder

Deletes the configuration recorder.

Type annotations and code completion for session.client("config").delete_configuration_recorder method. boto3 documentation

Method definition
await def delete_configuration_recorder(
    self,
    *,
    ConfigurationRecorderName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteConfigurationRecorderRequestRequestTypeDef = {  # (1)
    "ConfigurationRecorderName": ...,
}

parent.delete_configuration_recorder(**kwargs)
  1. See DeleteConfigurationRecorderRequestRequestTypeDef

delete_conformance_pack

Deletes the specified conformance pack and all the Config rules, remediation actions, and all evaluation results within that conformance pack.

Type annotations and code completion for session.client("config").delete_conformance_pack method. boto3 documentation

Method definition
await def delete_conformance_pack(
    self,
    *,
    ConformancePackName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteConformancePackRequestRequestTypeDef = {  # (1)
    "ConformancePackName": ...,
}

parent.delete_conformance_pack(**kwargs)
  1. See DeleteConformancePackRequestRequestTypeDef

delete_delivery_channel

Deletes the delivery channel.

Type annotations and code completion for session.client("config").delete_delivery_channel method. boto3 documentation

Method definition
await def delete_delivery_channel(
    self,
    *,
    DeliveryChannelName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteDeliveryChannelRequestRequestTypeDef = {  # (1)
    "DeliveryChannelName": ...,
}

parent.delete_delivery_channel(**kwargs)
  1. See DeleteDeliveryChannelRequestRequestTypeDef

delete_evaluation_results

Deletes the evaluation results for the specified Config rule.

Type annotations and code completion for session.client("config").delete_evaluation_results method. boto3 documentation

Method definition
await def delete_evaluation_results(
    self,
    *,
    ConfigRuleName: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteEvaluationResultsRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.delete_evaluation_results(**kwargs)
  1. See DeleteEvaluationResultsRequestRequestTypeDef

delete_organization_config_rule

Deletes the specified organization Config rule and all of its evaluation results from all member accounts in that organization.

Type annotations and code completion for session.client("config").delete_organization_config_rule method. boto3 documentation

Method definition
await def delete_organization_config_rule(
    self,
    *,
    OrganizationConfigRuleName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteOrganizationConfigRuleRequestRequestTypeDef = {  # (1)
    "OrganizationConfigRuleName": ...,
}

parent.delete_organization_config_rule(**kwargs)
  1. See DeleteOrganizationConfigRuleRequestRequestTypeDef

delete_organization_conformance_pack

Deletes the specified organization conformance pack and all of the Config rules and remediation actions from all member accounts in that organization.

Type annotations and code completion for session.client("config").delete_organization_conformance_pack method. boto3 documentation

Method definition
await def delete_organization_conformance_pack(
    self,
    *,
    OrganizationConformancePackName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteOrganizationConformancePackRequestRequestTypeDef = {  # (1)
    "OrganizationConformancePackName": ...,
}

parent.delete_organization_conformance_pack(**kwargs)
  1. See DeleteOrganizationConformancePackRequestRequestTypeDef

delete_pending_aggregation_request

Deletes pending authorization requests for a specified aggregator account in a specified region.

Type annotations and code completion for session.client("config").delete_pending_aggregation_request method. boto3 documentation

Method definition
await def delete_pending_aggregation_request(
    self,
    *,
    RequesterAccountId: str,
    RequesterAwsRegion: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeletePendingAggregationRequestRequestRequestTypeDef = {  # (1)
    "RequesterAccountId": ...,
    "RequesterAwsRegion": ...,
}

parent.delete_pending_aggregation_request(**kwargs)
  1. See DeletePendingAggregationRequestRequestRequestTypeDef

delete_remediation_configuration

Deletes the remediation configuration.

Type annotations and code completion for session.client("config").delete_remediation_configuration method. boto3 documentation

Method definition
await def delete_remediation_configuration(
    self,
    *,
    ConfigRuleName: str,
    ResourceType: str = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteRemediationConfigurationRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.delete_remediation_configuration(**kwargs)
  1. See DeleteRemediationConfigurationRequestRequestTypeDef

delete_remediation_exceptions

Deletes one or more remediation exceptions mentioned in the resource keys.

Type annotations and code completion for session.client("config").delete_remediation_exceptions method. boto3 documentation

Method definition
await def delete_remediation_exceptions(
    self,
    *,
    ConfigRuleName: str,
    ResourceKeys: Sequence[RemediationExceptionResourceKeyTypeDef],  # (1)
) -> DeleteRemediationExceptionsResponseTypeDef:  # (2)
    ...
  1. See RemediationExceptionResourceKeyTypeDef
  2. See DeleteRemediationExceptionsResponseTypeDef
Usage example with kwargs
kwargs: DeleteRemediationExceptionsRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
    "ResourceKeys": ...,
}

parent.delete_remediation_exceptions(**kwargs)
  1. See DeleteRemediationExceptionsRequestRequestTypeDef

delete_resource_config

Records the configuration state for a custom resource that has been deleted.

Type annotations and code completion for session.client("config").delete_resource_config method. boto3 documentation

Method definition
await def delete_resource_config(
    self,
    *,
    ResourceType: str,
    ResourceId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteResourceConfigRequestRequestTypeDef = {  # (1)
    "ResourceType": ...,
    "ResourceId": ...,
}

parent.delete_resource_config(**kwargs)
  1. See DeleteResourceConfigRequestRequestTypeDef

delete_retention_configuration

Deletes the retention configuration.

Type annotations and code completion for session.client("config").delete_retention_configuration method. boto3 documentation

Method definition
await def delete_retention_configuration(
    self,
    *,
    RetentionConfigurationName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteRetentionConfigurationRequestRequestTypeDef = {  # (1)
    "RetentionConfigurationName": ...,
}

parent.delete_retention_configuration(**kwargs)
  1. See DeleteRetentionConfigurationRequestRequestTypeDef

delete_stored_query

Deletes the stored query for a single Amazon Web Services account and a single Amazon Web Services Region.

Type annotations and code completion for session.client("config").delete_stored_query method. boto3 documentation

Method definition
await def delete_stored_query(
    self,
    *,
    QueryName: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteStoredQueryRequestRequestTypeDef = {  # (1)
    "QueryName": ...,
}

parent.delete_stored_query(**kwargs)
  1. See DeleteStoredQueryRequestRequestTypeDef

deliver_config_snapshot

Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the specified delivery channel.

Type annotations and code completion for session.client("config").deliver_config_snapshot method. boto3 documentation

Method definition
await def deliver_config_snapshot(
    self,
    *,
    deliveryChannelName: str,
) -> DeliverConfigSnapshotResponseTypeDef:  # (1)
    ...
  1. See DeliverConfigSnapshotResponseTypeDef
Usage example with kwargs
kwargs: DeliverConfigSnapshotRequestRequestTypeDef = {  # (1)
    "deliveryChannelName": ...,
}

parent.deliver_config_snapshot(**kwargs)
  1. See DeliverConfigSnapshotRequestRequestTypeDef

describe_aggregate_compliance_by_config_rules

Returns a list of compliant and noncompliant rules with the number of resources for compliant and noncompliant rules.

Type annotations and code completion for session.client("config").describe_aggregate_compliance_by_config_rules method. boto3 documentation

Method definition
await def describe_aggregate_compliance_by_config_rules(
    self,
    *,
    ConfigurationAggregatorName: str,
    Filters: ConfigRuleComplianceFiltersTypeDef = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeAggregateComplianceByConfigRulesResponseTypeDef:  # (2)
    ...
  1. See ConfigRuleComplianceFiltersTypeDef
  2. See DescribeAggregateComplianceByConfigRulesResponseTypeDef
Usage example with kwargs
kwargs: DescribeAggregateComplianceByConfigRulesRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.describe_aggregate_compliance_by_config_rules(**kwargs)
  1. See DescribeAggregateComplianceByConfigRulesRequestRequestTypeDef

describe_aggregate_compliance_by_conformance_packs

Returns a list of the conformance packs and their associated compliance status with the count of compliant and noncompliant Config rules within each conformance pack.

Type annotations and code completion for session.client("config").describe_aggregate_compliance_by_conformance_packs method. boto3 documentation

Method definition
await def describe_aggregate_compliance_by_conformance_packs(
    self,
    *,
    ConfigurationAggregatorName: str,
    Filters: AggregateConformancePackComplianceFiltersTypeDef = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeAggregateComplianceByConformancePacksResponseTypeDef:  # (2)
    ...
  1. See AggregateConformancePackComplianceFiltersTypeDef
  2. See DescribeAggregateComplianceByConformancePacksResponseTypeDef
Usage example with kwargs
kwargs: DescribeAggregateComplianceByConformancePacksRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.describe_aggregate_compliance_by_conformance_packs(**kwargs)
  1. See DescribeAggregateComplianceByConformancePacksRequestRequestTypeDef

describe_aggregation_authorizations

Returns a list of authorizations granted to various aggregator accounts and regions.

Type annotations and code completion for session.client("config").describe_aggregation_authorizations method. boto3 documentation

Method definition
await def describe_aggregation_authorizations(
    self,
    *,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeAggregationAuthorizationsResponseTypeDef:  # (1)
    ...
  1. See DescribeAggregationAuthorizationsResponseTypeDef
Usage example with kwargs
kwargs: DescribeAggregationAuthorizationsRequestRequestTypeDef = {  # (1)
    "Limit": ...,
}

parent.describe_aggregation_authorizations(**kwargs)
  1. See DescribeAggregationAuthorizationsRequestRequestTypeDef

describe_compliance_by_config_rule

Indicates whether the specified Config rules are compliant.

Type annotations and code completion for session.client("config").describe_compliance_by_config_rule method. boto3 documentation

Method definition
await def describe_compliance_by_config_rule(
    self,
    *,
    ConfigRuleNames: Sequence[str] = ...,
    ComplianceTypes: Sequence[ComplianceTypeType] = ...,  # (1)
    NextToken: str = ...,
) -> DescribeComplianceByConfigRuleResponseTypeDef:  # (2)
    ...
  1. See ComplianceTypeType
  2. See DescribeComplianceByConfigRuleResponseTypeDef
Usage example with kwargs
kwargs: DescribeComplianceByConfigRuleRequestRequestTypeDef = {  # (1)
    "ConfigRuleNames": ...,
}

parent.describe_compliance_by_config_rule(**kwargs)
  1. See DescribeComplianceByConfigRuleRequestRequestTypeDef

describe_compliance_by_resource

Indicates whether the specified Amazon Web Services resources are compliant.

Type annotations and code completion for session.client("config").describe_compliance_by_resource method. boto3 documentation

Method definition
await def describe_compliance_by_resource(
    self,
    *,
    ResourceType: str = ...,
    ResourceId: str = ...,
    ComplianceTypes: Sequence[ComplianceTypeType] = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeComplianceByResourceResponseTypeDef:  # (2)
    ...
  1. See ComplianceTypeType
  2. See DescribeComplianceByResourceResponseTypeDef
Usage example with kwargs
kwargs: DescribeComplianceByResourceRequestRequestTypeDef = {  # (1)
    "ResourceType": ...,
}

parent.describe_compliance_by_resource(**kwargs)
  1. See DescribeComplianceByResourceRequestRequestTypeDef

describe_config_rule_evaluation_status

Returns status information for each of your Config managed rules.

Type annotations and code completion for session.client("config").describe_config_rule_evaluation_status method. boto3 documentation

Method definition
await def describe_config_rule_evaluation_status(
    self,
    *,
    ConfigRuleNames: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeConfigRuleEvaluationStatusResponseTypeDef:  # (1)
    ...
  1. See DescribeConfigRuleEvaluationStatusResponseTypeDef
Usage example with kwargs
kwargs: DescribeConfigRuleEvaluationStatusRequestRequestTypeDef = {  # (1)
    "ConfigRuleNames": ...,
}

parent.describe_config_rule_evaluation_status(**kwargs)
  1. See DescribeConfigRuleEvaluationStatusRequestRequestTypeDef

describe_config_rules

Returns details about your Config rules.

Type annotations and code completion for session.client("config").describe_config_rules method. boto3 documentation

Method definition
await def describe_config_rules(
    self,
    *,
    ConfigRuleNames: Sequence[str] = ...,
    NextToken: str = ...,
) -> DescribeConfigRulesResponseTypeDef:  # (1)
    ...
  1. See DescribeConfigRulesResponseTypeDef
Usage example with kwargs
kwargs: DescribeConfigRulesRequestRequestTypeDef = {  # (1)
    "ConfigRuleNames": ...,
}

parent.describe_config_rules(**kwargs)
  1. See DescribeConfigRulesRequestRequestTypeDef

describe_configuration_aggregator_sources_status

Returns status information for sources within an aggregator.

Type annotations and code completion for session.client("config").describe_configuration_aggregator_sources_status method. boto3 documentation

Method definition
await def describe_configuration_aggregator_sources_status(
    self,
    *,
    ConfigurationAggregatorName: str,
    UpdateStatus: Sequence[AggregatedSourceStatusTypeType] = ...,  # (1)
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeConfigurationAggregatorSourcesStatusResponseTypeDef:  # (2)
    ...
  1. See AggregatedSourceStatusTypeType
  2. See DescribeConfigurationAggregatorSourcesStatusResponseTypeDef
Usage example with kwargs
kwargs: DescribeConfigurationAggregatorSourcesStatusRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.describe_configuration_aggregator_sources_status(**kwargs)
  1. See DescribeConfigurationAggregatorSourcesStatusRequestRequestTypeDef

describe_configuration_aggregators

Returns the details of one or more configuration aggregators.

Type annotations and code completion for session.client("config").describe_configuration_aggregators method. boto3 documentation

Method definition
await def describe_configuration_aggregators(
    self,
    *,
    ConfigurationAggregatorNames: Sequence[str] = ...,
    NextToken: str = ...,
    Limit: int = ...,
) -> DescribeConfigurationAggregatorsResponseTypeDef:  # (1)
    ...
  1. See DescribeConfigurationAggregatorsResponseTypeDef
Usage example with kwargs
kwargs: DescribeConfigurationAggregatorsRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorNames": ...,
}

parent.describe_configuration_aggregators(**kwargs)
  1. See DescribeConfigurationAggregatorsRequestRequestTypeDef

describe_configuration_recorder_status

Returns the current status of the specified configuration recorder.

Type annotations and code completion for session.client("config").describe_configuration_recorder_status method. boto3 documentation

Method definition
await def describe_configuration_recorder_status(
    self,
    *,
    ConfigurationRecorderNames: Sequence[str] = ...,
) -> DescribeConfigurationRecorderStatusResponseTypeDef:  # (1)
    ...
  1. See DescribeConfigurationRecorderStatusResponseTypeDef
Usage example with kwargs
kwargs: DescribeConfigurationRecorderStatusRequestRequestTypeDef = {  # (1)
    "ConfigurationRecorderNames": ...,
}

parent.describe_configuration_recorder_status(**kwargs)
  1. See DescribeConfigurationRecorderStatusRequestRequestTypeDef

describe_configuration_recorders

Returns the details for the specified configuration recorders.

Type annotations and code completion for session.client("config").describe_configuration_recorders method. boto3 documentation

Method definition
await def describe_configuration_recorders(
    self,
    *,
    ConfigurationRecorderNames: Sequence[str] = ...,
) -> DescribeConfigurationRecordersResponseTypeDef:  # (1)
    ...
  1. See DescribeConfigurationRecordersResponseTypeDef
Usage example with kwargs
kwargs: DescribeConfigurationRecordersRequestRequestTypeDef = {  # (1)
    "ConfigurationRecorderNames": ...,
}

parent.describe_configuration_recorders(**kwargs)
  1. See DescribeConfigurationRecordersRequestRequestTypeDef

describe_conformance_pack_compliance

Returns compliance details for each rule in that conformance pack.

Type annotations and code completion for session.client("config").describe_conformance_pack_compliance method. boto3 documentation

Method definition
await def describe_conformance_pack_compliance(
    self,
    *,
    ConformancePackName: str,
    Filters: ConformancePackComplianceFiltersTypeDef = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeConformancePackComplianceResponseTypeDef:  # (2)
    ...
  1. See ConformancePackComplianceFiltersTypeDef
  2. See DescribeConformancePackComplianceResponseTypeDef
Usage example with kwargs
kwargs: DescribeConformancePackComplianceRequestRequestTypeDef = {  # (1)
    "ConformancePackName": ...,
}

parent.describe_conformance_pack_compliance(**kwargs)
  1. See DescribeConformancePackComplianceRequestRequestTypeDef

describe_conformance_pack_status

Provides one or more conformance packs deployment status.

Type annotations and code completion for session.client("config").describe_conformance_pack_status method. boto3 documentation

Method definition
await def describe_conformance_pack_status(
    self,
    *,
    ConformancePackNames: Sequence[str] = ...,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeConformancePackStatusResponseTypeDef:  # (1)
    ...
  1. See DescribeConformancePackStatusResponseTypeDef
Usage example with kwargs
kwargs: DescribeConformancePackStatusRequestRequestTypeDef = {  # (1)
    "ConformancePackNames": ...,
}

parent.describe_conformance_pack_status(**kwargs)
  1. See DescribeConformancePackStatusRequestRequestTypeDef

describe_conformance_packs

Returns a list of one or more conformance packs.

Type annotations and code completion for session.client("config").describe_conformance_packs method. boto3 documentation

Method definition
await def describe_conformance_packs(
    self,
    *,
    ConformancePackNames: Sequence[str] = ...,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeConformancePacksResponseTypeDef:  # (1)
    ...
  1. See DescribeConformancePacksResponseTypeDef
Usage example with kwargs
kwargs: DescribeConformancePacksRequestRequestTypeDef = {  # (1)
    "ConformancePackNames": ...,
}

parent.describe_conformance_packs(**kwargs)
  1. See DescribeConformancePacksRequestRequestTypeDef

describe_delivery_channel_status

Returns the current status of the specified delivery channel.

Type annotations and code completion for session.client("config").describe_delivery_channel_status method. boto3 documentation

Method definition
await def describe_delivery_channel_status(
    self,
    *,
    DeliveryChannelNames: Sequence[str] = ...,
) -> DescribeDeliveryChannelStatusResponseTypeDef:  # (1)
    ...
  1. See DescribeDeliveryChannelStatusResponseTypeDef
Usage example with kwargs
kwargs: DescribeDeliveryChannelStatusRequestRequestTypeDef = {  # (1)
    "DeliveryChannelNames": ...,
}

parent.describe_delivery_channel_status(**kwargs)
  1. See DescribeDeliveryChannelStatusRequestRequestTypeDef

describe_delivery_channels

Returns details about the specified delivery channel.

Type annotations and code completion for session.client("config").describe_delivery_channels method. boto3 documentation

Method definition
await def describe_delivery_channels(
    self,
    *,
    DeliveryChannelNames: Sequence[str] = ...,
) -> DescribeDeliveryChannelsResponseTypeDef:  # (1)
    ...
  1. See DescribeDeliveryChannelsResponseTypeDef
Usage example with kwargs
kwargs: DescribeDeliveryChannelsRequestRequestTypeDef = {  # (1)
    "DeliveryChannelNames": ...,
}

parent.describe_delivery_channels(**kwargs)
  1. See DescribeDeliveryChannelsRequestRequestTypeDef

describe_organization_config_rule_statuses

Provides organization Config rule deployment status for an organization.

Type annotations and code completion for session.client("config").describe_organization_config_rule_statuses method. boto3 documentation

Method definition
await def describe_organization_config_rule_statuses(
    self,
    *,
    OrganizationConfigRuleNames: Sequence[str] = ...,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeOrganizationConfigRuleStatusesResponseTypeDef:  # (1)
    ...
  1. See DescribeOrganizationConfigRuleStatusesResponseTypeDef
Usage example with kwargs
kwargs: DescribeOrganizationConfigRuleStatusesRequestRequestTypeDef = {  # (1)
    "OrganizationConfigRuleNames": ...,
}

parent.describe_organization_config_rule_statuses(**kwargs)
  1. See DescribeOrganizationConfigRuleStatusesRequestRequestTypeDef

describe_organization_config_rules

Returns a list of organization Config rules.

Type annotations and code completion for session.client("config").describe_organization_config_rules method. boto3 documentation

Method definition
await def describe_organization_config_rules(
    self,
    *,
    OrganizationConfigRuleNames: Sequence[str] = ...,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeOrganizationConfigRulesResponseTypeDef:  # (1)
    ...
  1. See DescribeOrganizationConfigRulesResponseTypeDef
Usage example with kwargs
kwargs: DescribeOrganizationConfigRulesRequestRequestTypeDef = {  # (1)
    "OrganizationConfigRuleNames": ...,
}

parent.describe_organization_config_rules(**kwargs)
  1. See DescribeOrganizationConfigRulesRequestRequestTypeDef

describe_organization_conformance_pack_statuses

Provides organization conformance pack deployment status for an organization.

Type annotations and code completion for session.client("config").describe_organization_conformance_pack_statuses method. boto3 documentation

Method definition
await def describe_organization_conformance_pack_statuses(
    self,
    *,
    OrganizationConformancePackNames: Sequence[str] = ...,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeOrganizationConformancePackStatusesResponseTypeDef:  # (1)
    ...
  1. See DescribeOrganizationConformancePackStatusesResponseTypeDef
Usage example with kwargs
kwargs: DescribeOrganizationConformancePackStatusesRequestRequestTypeDef = {  # (1)
    "OrganizationConformancePackNames": ...,
}

parent.describe_organization_conformance_pack_statuses(**kwargs)
  1. See DescribeOrganizationConformancePackStatusesRequestRequestTypeDef

describe_organization_conformance_packs

Returns a list of organization conformance packs.

Type annotations and code completion for session.client("config").describe_organization_conformance_packs method. boto3 documentation

Method definition
await def describe_organization_conformance_packs(
    self,
    *,
    OrganizationConformancePackNames: Sequence[str] = ...,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeOrganizationConformancePacksResponseTypeDef:  # (1)
    ...
  1. See DescribeOrganizationConformancePacksResponseTypeDef
Usage example with kwargs
kwargs: DescribeOrganizationConformancePacksRequestRequestTypeDef = {  # (1)
    "OrganizationConformancePackNames": ...,
}

parent.describe_organization_conformance_packs(**kwargs)
  1. See DescribeOrganizationConformancePacksRequestRequestTypeDef

describe_pending_aggregation_requests

Returns a list of all pending aggregation requests.

Type annotations and code completion for session.client("config").describe_pending_aggregation_requests method. boto3 documentation

Method definition
await def describe_pending_aggregation_requests(
    self,
    *,
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribePendingAggregationRequestsResponseTypeDef:  # (1)
    ...
  1. See DescribePendingAggregationRequestsResponseTypeDef
Usage example with kwargs
kwargs: DescribePendingAggregationRequestsRequestRequestTypeDef = {  # (1)
    "Limit": ...,
}

parent.describe_pending_aggregation_requests(**kwargs)
  1. See DescribePendingAggregationRequestsRequestRequestTypeDef

describe_remediation_configurations

Returns the details of one or more remediation configurations.

Type annotations and code completion for session.client("config").describe_remediation_configurations method. boto3 documentation

Method definition
await def describe_remediation_configurations(
    self,
    *,
    ConfigRuleNames: Sequence[str],
) -> DescribeRemediationConfigurationsResponseTypeDef:  # (1)
    ...
  1. See DescribeRemediationConfigurationsResponseTypeDef
Usage example with kwargs
kwargs: DescribeRemediationConfigurationsRequestRequestTypeDef = {  # (1)
    "ConfigRuleNames": ...,
}

parent.describe_remediation_configurations(**kwargs)
  1. See DescribeRemediationConfigurationsRequestRequestTypeDef

describe_remediation_exceptions

Returns the details of one or more remediation exceptions.

Type annotations and code completion for session.client("config").describe_remediation_exceptions method. boto3 documentation

Method definition
await def describe_remediation_exceptions(
    self,
    *,
    ConfigRuleName: str,
    ResourceKeys: Sequence[RemediationExceptionResourceKeyTypeDef] = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeRemediationExceptionsResponseTypeDef:  # (2)
    ...
  1. See RemediationExceptionResourceKeyTypeDef
  2. See DescribeRemediationExceptionsResponseTypeDef
Usage example with kwargs
kwargs: DescribeRemediationExceptionsRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.describe_remediation_exceptions(**kwargs)
  1. See DescribeRemediationExceptionsRequestRequestTypeDef

describe_remediation_execution_status

Provides a detailed view of a Remediation Execution for a set of resources including state, timestamps for when steps for the remediation execution occur, and any error messages for steps that have failed.

Type annotations and code completion for session.client("config").describe_remediation_execution_status method. boto3 documentation

Method definition
await def describe_remediation_execution_status(
    self,
    *,
    ConfigRuleName: str,
    ResourceKeys: Sequence[ResourceKeyTypeDef] = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> DescribeRemediationExecutionStatusResponseTypeDef:  # (2)
    ...
  1. See ResourceKeyTypeDef
  2. See DescribeRemediationExecutionStatusResponseTypeDef
Usage example with kwargs
kwargs: DescribeRemediationExecutionStatusRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.describe_remediation_execution_status(**kwargs)
  1. See DescribeRemediationExecutionStatusRequestRequestTypeDef

describe_retention_configurations

Returns the details of one or more retention configurations.

Type annotations and code completion for session.client("config").describe_retention_configurations method. boto3 documentation

Method definition
await def describe_retention_configurations(
    self,
    *,
    RetentionConfigurationNames: Sequence[str] = ...,
    NextToken: str = ...,
) -> DescribeRetentionConfigurationsResponseTypeDef:  # (1)
    ...
  1. See DescribeRetentionConfigurationsResponseTypeDef
Usage example with kwargs
kwargs: DescribeRetentionConfigurationsRequestRequestTypeDef = {  # (1)
    "RetentionConfigurationNames": ...,
}

parent.describe_retention_configurations(**kwargs)
  1. See DescribeRetentionConfigurationsRequestRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.client("config").generate_presigned_url method. boto3 documentation

Method definition
await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_aggregate_compliance_details_by_config_rule

Returns the evaluation results for the specified Config rule for a specific resource in a rule.

Type annotations and code completion for session.client("config").get_aggregate_compliance_details_by_config_rule method. boto3 documentation

Method definition
await def get_aggregate_compliance_details_by_config_rule(
    self,
    *,
    ConfigurationAggregatorName: str,
    ConfigRuleName: str,
    AccountId: str,
    AwsRegion: str,
    ComplianceType: ComplianceTypeType = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetAggregateComplianceDetailsByConfigRuleResponseTypeDef:  # (2)
    ...
  1. See ComplianceTypeType
  2. See GetAggregateComplianceDetailsByConfigRuleResponseTypeDef
Usage example with kwargs
kwargs: GetAggregateComplianceDetailsByConfigRuleRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
    "ConfigRuleName": ...,
    "AccountId": ...,
    "AwsRegion": ...,
}

parent.get_aggregate_compliance_details_by_config_rule(**kwargs)
  1. See GetAggregateComplianceDetailsByConfigRuleRequestRequestTypeDef

get_aggregate_config_rule_compliance_summary

Returns the number of compliant and noncompliant rules for one or more accounts and regions in an aggregator.

Type annotations and code completion for session.client("config").get_aggregate_config_rule_compliance_summary method. boto3 documentation

Method definition
await def get_aggregate_config_rule_compliance_summary(
    self,
    *,
    ConfigurationAggregatorName: str,
    Filters: ConfigRuleComplianceSummaryFiltersTypeDef = ...,  # (1)
    GroupByKey: ConfigRuleComplianceSummaryGroupKeyType = ...,  # (2)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetAggregateConfigRuleComplianceSummaryResponseTypeDef:  # (3)
    ...
  1. See ConfigRuleComplianceSummaryFiltersTypeDef
  2. See ConfigRuleComplianceSummaryGroupKeyType
  3. See GetAggregateConfigRuleComplianceSummaryResponseTypeDef
Usage example with kwargs
kwargs: GetAggregateConfigRuleComplianceSummaryRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.get_aggregate_config_rule_compliance_summary(**kwargs)
  1. See GetAggregateConfigRuleComplianceSummaryRequestRequestTypeDef

get_aggregate_conformance_pack_compliance_summary

Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator.

Type annotations and code completion for session.client("config").get_aggregate_conformance_pack_compliance_summary method. boto3 documentation

Method definition
await def get_aggregate_conformance_pack_compliance_summary(
    self,
    *,
    ConfigurationAggregatorName: str,
    Filters: AggregateConformancePackComplianceSummaryFiltersTypeDef = ...,  # (1)
    GroupByKey: AggregateConformancePackComplianceSummaryGroupKeyType = ...,  # (2)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetAggregateConformancePackComplianceSummaryResponseTypeDef:  # (3)
    ...
  1. See AggregateConformancePackComplianceSummaryFiltersTypeDef
  2. See AggregateConformancePackComplianceSummaryGroupKeyType
  3. See GetAggregateConformancePackComplianceSummaryResponseTypeDef
Usage example with kwargs
kwargs: GetAggregateConformancePackComplianceSummaryRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.get_aggregate_conformance_pack_compliance_summary(**kwargs)
  1. See GetAggregateConformancePackComplianceSummaryRequestRequestTypeDef

get_aggregate_discovered_resource_counts

Returns the resource counts across accounts and regions that are present in your Config aggregator.

Type annotations and code completion for session.client("config").get_aggregate_discovered_resource_counts method. boto3 documentation

Method definition
await def get_aggregate_discovered_resource_counts(
    self,
    *,
    ConfigurationAggregatorName: str,
    Filters: ResourceCountFiltersTypeDef = ...,  # (1)
    GroupByKey: ResourceCountGroupKeyType = ...,  # (2)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetAggregateDiscoveredResourceCountsResponseTypeDef:  # (3)
    ...
  1. See ResourceCountFiltersTypeDef
  2. See ResourceCountGroupKeyType
  3. See GetAggregateDiscoveredResourceCountsResponseTypeDef
Usage example with kwargs
kwargs: GetAggregateDiscoveredResourceCountsRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.get_aggregate_discovered_resource_counts(**kwargs)
  1. See GetAggregateDiscoveredResourceCountsRequestRequestTypeDef

get_aggregate_resource_config

Returns configuration item that is aggregated for your specific resource in a specific source account and region.

Type annotations and code completion for session.client("config").get_aggregate_resource_config method. boto3 documentation

Method definition
await def get_aggregate_resource_config(
    self,
    *,
    ConfigurationAggregatorName: str,
    ResourceIdentifier: AggregateResourceIdentifierTypeDef,  # (1)
) -> GetAggregateResourceConfigResponseTypeDef:  # (2)
    ...
  1. See AggregateResourceIdentifierTypeDef
  2. See GetAggregateResourceConfigResponseTypeDef
Usage example with kwargs
kwargs: GetAggregateResourceConfigRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
    "ResourceIdentifier": ...,
}

parent.get_aggregate_resource_config(**kwargs)
  1. See GetAggregateResourceConfigRequestRequestTypeDef

get_compliance_details_by_config_rule

Returns the evaluation results for the specified Config rule.

Type annotations and code completion for session.client("config").get_compliance_details_by_config_rule method. boto3 documentation

Method definition
await def get_compliance_details_by_config_rule(
    self,
    *,
    ConfigRuleName: str,
    ComplianceTypes: Sequence[ComplianceTypeType] = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetComplianceDetailsByConfigRuleResponseTypeDef:  # (2)
    ...
  1. See ComplianceTypeType
  2. See GetComplianceDetailsByConfigRuleResponseTypeDef
Usage example with kwargs
kwargs: GetComplianceDetailsByConfigRuleRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.get_compliance_details_by_config_rule(**kwargs)
  1. See GetComplianceDetailsByConfigRuleRequestRequestTypeDef

get_compliance_details_by_resource

Returns the evaluation results for the specified Amazon Web Services resource.

Type annotations and code completion for session.client("config").get_compliance_details_by_resource method. boto3 documentation

Method definition
await def get_compliance_details_by_resource(
    self,
    *,
    ResourceType: str,
    ResourceId: str,
    ComplianceTypes: Sequence[ComplianceTypeType] = ...,  # (1)
    NextToken: str = ...,
) -> GetComplianceDetailsByResourceResponseTypeDef:  # (2)
    ...
  1. See ComplianceTypeType
  2. See GetComplianceDetailsByResourceResponseTypeDef
Usage example with kwargs
kwargs: GetComplianceDetailsByResourceRequestRequestTypeDef = {  # (1)
    "ResourceType": ...,
    "ResourceId": ...,
}

parent.get_compliance_details_by_resource(**kwargs)
  1. See GetComplianceDetailsByResourceRequestRequestTypeDef

get_compliance_summary_by_config_rule

Returns the number of Config rules that are compliant and noncompliant, up to a maximum of 25 for each.

Type annotations and code completion for session.client("config").get_compliance_summary_by_config_rule method. boto3 documentation

Method definition
await def get_compliance_summary_by_config_rule(
    self,
) -> GetComplianceSummaryByConfigRuleResponseTypeDef:  # (1)
    ...
  1. See GetComplianceSummaryByConfigRuleResponseTypeDef

get_compliance_summary_by_resource_type

Returns the number of resources that are compliant and the number that are noncompliant.

Type annotations and code completion for session.client("config").get_compliance_summary_by_resource_type method. boto3 documentation

Method definition
await def get_compliance_summary_by_resource_type(
    self,
    *,
    ResourceTypes: Sequence[str] = ...,
) -> GetComplianceSummaryByResourceTypeResponseTypeDef:  # (1)
    ...
  1. See GetComplianceSummaryByResourceTypeResponseTypeDef
Usage example with kwargs
kwargs: GetComplianceSummaryByResourceTypeRequestRequestTypeDef = {  # (1)
    "ResourceTypes": ...,
}

parent.get_compliance_summary_by_resource_type(**kwargs)
  1. See GetComplianceSummaryByResourceTypeRequestRequestTypeDef

get_conformance_pack_compliance_details

Returns compliance details of a conformance pack for all Amazon Web Services resources that are monitered by conformance pack.

Type annotations and code completion for session.client("config").get_conformance_pack_compliance_details method. boto3 documentation

Method definition
await def get_conformance_pack_compliance_details(
    self,
    *,
    ConformancePackName: str,
    Filters: ConformancePackEvaluationFiltersTypeDef = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetConformancePackComplianceDetailsResponseTypeDef:  # (2)
    ...
  1. See ConformancePackEvaluationFiltersTypeDef
  2. See GetConformancePackComplianceDetailsResponseTypeDef
Usage example with kwargs
kwargs: GetConformancePackComplianceDetailsRequestRequestTypeDef = {  # (1)
    "ConformancePackName": ...,
}

parent.get_conformance_pack_compliance_details(**kwargs)
  1. See GetConformancePackComplianceDetailsRequestRequestTypeDef

get_conformance_pack_compliance_summary

Returns compliance details for the conformance pack based on the cumulative compliance results of all the rules in that conformance pack.

Type annotations and code completion for session.client("config").get_conformance_pack_compliance_summary method. boto3 documentation

Method definition
await def get_conformance_pack_compliance_summary(
    self,
    *,
    ConformancePackNames: Sequence[str],
    Limit: int = ...,
    NextToken: str = ...,
) -> GetConformancePackComplianceSummaryResponseTypeDef:  # (1)
    ...
  1. See GetConformancePackComplianceSummaryResponseTypeDef
Usage example with kwargs
kwargs: GetConformancePackComplianceSummaryRequestRequestTypeDef = {  # (1)
    "ConformancePackNames": ...,
}

parent.get_conformance_pack_compliance_summary(**kwargs)
  1. See GetConformancePackComplianceSummaryRequestRequestTypeDef

get_custom_rule_policy

Returns the policy definition containing the logic for your Config Custom Policy rule.

Type annotations and code completion for session.client("config").get_custom_rule_policy method. boto3 documentation

Method definition
await def get_custom_rule_policy(
    self,
    *,
    ConfigRuleName: str = ...,
) -> GetCustomRulePolicyResponseTypeDef:  # (1)
    ...
  1. See GetCustomRulePolicyResponseTypeDef
Usage example with kwargs
kwargs: GetCustomRulePolicyRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
}

parent.get_custom_rule_policy(**kwargs)
  1. See GetCustomRulePolicyRequestRequestTypeDef

get_discovered_resource_counts

Returns the resource types, the number of each resource type, and the total number of resources that Config is recording in this region for your Amazon Web Services account.

Type annotations and code completion for session.client("config").get_discovered_resource_counts method. boto3 documentation

Method definition
await def get_discovered_resource_counts(
    self,
    *,
    resourceTypes: Sequence[str] = ...,
    limit: int = ...,
    nextToken: str = ...,
) -> GetDiscoveredResourceCountsResponseTypeDef:  # (1)
    ...
  1. See GetDiscoveredResourceCountsResponseTypeDef
Usage example with kwargs
kwargs: GetDiscoveredResourceCountsRequestRequestTypeDef = {  # (1)
    "resourceTypes": ...,
}

parent.get_discovered_resource_counts(**kwargs)
  1. See GetDiscoveredResourceCountsRequestRequestTypeDef

get_organization_config_rule_detailed_status

Returns detailed status for each member account within an organization for a given organization Config rule.

Type annotations and code completion for session.client("config").get_organization_config_rule_detailed_status method. boto3 documentation

Method definition
await def get_organization_config_rule_detailed_status(
    self,
    *,
    OrganizationConfigRuleName: str,
    Filters: StatusDetailFiltersTypeDef = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetOrganizationConfigRuleDetailedStatusResponseTypeDef:  # (2)
    ...
  1. See StatusDetailFiltersTypeDef
  2. See GetOrganizationConfigRuleDetailedStatusResponseTypeDef
Usage example with kwargs
kwargs: GetOrganizationConfigRuleDetailedStatusRequestRequestTypeDef = {  # (1)
    "OrganizationConfigRuleName": ...,
}

parent.get_organization_config_rule_detailed_status(**kwargs)
  1. See GetOrganizationConfigRuleDetailedStatusRequestRequestTypeDef

get_organization_conformance_pack_detailed_status

Returns detailed status for each member account within an organization for a given organization conformance pack.

Type annotations and code completion for session.client("config").get_organization_conformance_pack_detailed_status method. boto3 documentation

Method definition
await def get_organization_conformance_pack_detailed_status(
    self,
    *,
    OrganizationConformancePackName: str,
    Filters: OrganizationResourceDetailedStatusFiltersTypeDef = ...,  # (1)
    Limit: int = ...,
    NextToken: str = ...,
) -> GetOrganizationConformancePackDetailedStatusResponseTypeDef:  # (2)
    ...
  1. See OrganizationResourceDetailedStatusFiltersTypeDef
  2. See GetOrganizationConformancePackDetailedStatusResponseTypeDef
Usage example with kwargs
kwargs: GetOrganizationConformancePackDetailedStatusRequestRequestTypeDef = {  # (1)
    "OrganizationConformancePackName": ...,
}

parent.get_organization_conformance_pack_detailed_status(**kwargs)
  1. See GetOrganizationConformancePackDetailedStatusRequestRequestTypeDef

get_organization_custom_rule_policy

Returns the policy definition containing the logic for your organization Config Custom Policy rule.

Type annotations and code completion for session.client("config").get_organization_custom_rule_policy method. boto3 documentation

Method definition
await def get_organization_custom_rule_policy(
    self,
    *,
    OrganizationConfigRuleName: str,
) -> GetOrganizationCustomRulePolicyResponseTypeDef:  # (1)
    ...
  1. See GetOrganizationCustomRulePolicyResponseTypeDef
Usage example with kwargs
kwargs: GetOrganizationCustomRulePolicyRequestRequestTypeDef = {  # (1)
    "OrganizationConfigRuleName": ...,
}

parent.get_organization_custom_rule_policy(**kwargs)
  1. See GetOrganizationCustomRulePolicyRequestRequestTypeDef

get_resource_config_history

Returns a list of ConfigurationItems for the specified resource.

Type annotations and code completion for session.client("config").get_resource_config_history method. boto3 documentation

Method definition
await def get_resource_config_history(
    self,
    *,
    resourceType: ResourceTypeType,  # (1)
    resourceId: str,
    laterTime: Union[datetime, str] = ...,
    earlierTime: Union[datetime, str] = ...,
    chronologicalOrder: ChronologicalOrderType = ...,  # (2)
    limit: int = ...,
    nextToken: str = ...,
) -> GetResourceConfigHistoryResponseTypeDef:  # (3)
    ...
  1. See ResourceTypeType
  2. See ChronologicalOrderType
  3. See GetResourceConfigHistoryResponseTypeDef
Usage example with kwargs
kwargs: GetResourceConfigHistoryRequestRequestTypeDef = {  # (1)
    "resourceType": ...,
    "resourceId": ...,
}

parent.get_resource_config_history(**kwargs)
  1. See GetResourceConfigHistoryRequestRequestTypeDef

get_stored_query

Returns the details of a specific stored query.

Type annotations and code completion for session.client("config").get_stored_query method. boto3 documentation

Method definition
await def get_stored_query(
    self,
    *,
    QueryName: str,
) -> GetStoredQueryResponseTypeDef:  # (1)
    ...
  1. See GetStoredQueryResponseTypeDef
Usage example with kwargs
kwargs: GetStoredQueryRequestRequestTypeDef = {  # (1)
    "QueryName": ...,
}

parent.get_stored_query(**kwargs)
  1. See GetStoredQueryRequestRequestTypeDef

list_aggregate_discovered_resources

Accepts a resource type and returns a list of resource identifiers that are aggregated for a specific resource type across accounts and regions.

Type annotations and code completion for session.client("config").list_aggregate_discovered_resources method. boto3 documentation

Method definition
await def list_aggregate_discovered_resources(
    self,
    *,
    ConfigurationAggregatorName: str,
    ResourceType: ResourceTypeType,  # (1)
    Filters: ResourceFiltersTypeDef = ...,  # (2)
    Limit: int = ...,
    NextToken: str = ...,
) -> ListAggregateDiscoveredResourcesResponseTypeDef:  # (3)
    ...
  1. See ResourceTypeType
  2. See ResourceFiltersTypeDef
  3. See ListAggregateDiscoveredResourcesResponseTypeDef
Usage example with kwargs
kwargs: ListAggregateDiscoveredResourcesRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
    "ResourceType": ...,
}

parent.list_aggregate_discovered_resources(**kwargs)
  1. See ListAggregateDiscoveredResourcesRequestRequestTypeDef

list_conformance_pack_compliance_scores

Returns a list of conformance pack compliance scores.

Type annotations and code completion for session.client("config").list_conformance_pack_compliance_scores method. boto3 documentation

Method definition
await def list_conformance_pack_compliance_scores(
    self,
    *,
    Filters: ConformancePackComplianceScoresFiltersTypeDef = ...,  # (1)
    SortOrder: SortOrderType = ...,  # (2)
    SortBy: SortByType = ...,  # (3)
    Limit: int = ...,
    NextToken: str = ...,
) -> ListConformancePackComplianceScoresResponseTypeDef:  # (4)
    ...
  1. See ConformancePackComplianceScoresFiltersTypeDef
  2. See SortOrderType
  3. See SortByType
  4. See ListConformancePackComplianceScoresResponseTypeDef
Usage example with kwargs
kwargs: ListConformancePackComplianceScoresRequestRequestTypeDef = {  # (1)
    "Filters": ...,
}

parent.list_conformance_pack_compliance_scores(**kwargs)
  1. See ListConformancePackComplianceScoresRequestRequestTypeDef

list_discovered_resources

Accepts a resource type and returns a list of resource identifiers for the resources of that type.

Type annotations and code completion for session.client("config").list_discovered_resources method. boto3 documentation

Method definition
await def list_discovered_resources(
    self,
    *,
    resourceType: ResourceTypeType,  # (1)
    resourceIds: Sequence[str] = ...,
    resourceName: str = ...,
    limit: int = ...,
    includeDeletedResources: bool = ...,
    nextToken: str = ...,
) -> ListDiscoveredResourcesResponseTypeDef:  # (2)
    ...
  1. See ResourceTypeType
  2. See ListDiscoveredResourcesResponseTypeDef
Usage example with kwargs
kwargs: ListDiscoveredResourcesRequestRequestTypeDef = {  # (1)
    "resourceType": ...,
}

parent.list_discovered_resources(**kwargs)
  1. See ListDiscoveredResourcesRequestRequestTypeDef

list_stored_queries

Lists the stored queries for a single Amazon Web Services account and a single Amazon Web Services Region.

Type annotations and code completion for session.client("config").list_stored_queries method. boto3 documentation

Method definition
await def list_stored_queries(
    self,
    *,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListStoredQueriesResponseTypeDef:  # (1)
    ...
  1. See ListStoredQueriesResponseTypeDef
Usage example with kwargs
kwargs: ListStoredQueriesRequestRequestTypeDef = {  # (1)
    "NextToken": ...,
}

parent.list_stored_queries(**kwargs)
  1. See ListStoredQueriesRequestRequestTypeDef

list_tags_for_resource

List the tags for Config resource.

Type annotations and code completion for session.client("config").list_tags_for_resource method. boto3 documentation

Method definition
await def list_tags_for_resource(
    self,
    *,
    ResourceArn: str,
    Limit: int = ...,
    NextToken: str = ...,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

put_aggregation_authorization

Authorizes the aggregator account and region to collect data from the source account and region.

Type annotations and code completion for session.client("config").put_aggregation_authorization method. boto3 documentation

Method definition
await def put_aggregation_authorization(
    self,
    *,
    AuthorizedAccountId: str,
    AuthorizedAwsRegion: str,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> PutAggregationAuthorizationResponseTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See PutAggregationAuthorizationResponseTypeDef
Usage example with kwargs
kwargs: PutAggregationAuthorizationRequestRequestTypeDef = {  # (1)
    "AuthorizedAccountId": ...,
    "AuthorizedAwsRegion": ...,
}

parent.put_aggregation_authorization(**kwargs)
  1. See PutAggregationAuthorizationRequestRequestTypeDef

put_config_rule

.

Type annotations and code completion for session.client("config").put_config_rule method. boto3 documentation

Method definition
await def put_config_rule(
    self,
    *,
    ConfigRule: ConfigRuleTypeDef,  # (1)
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> EmptyResponseMetadataTypeDef:  # (3)
    ...
  1. See ConfigRuleTypeDef
  2. See TagTypeDef
  3. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: PutConfigRuleRequestRequestTypeDef = {  # (1)
    "ConfigRule": ...,
}

parent.put_config_rule(**kwargs)
  1. See PutConfigRuleRequestRequestTypeDef

put_configuration_aggregator

Creates and updates the configuration aggregator with the selected source accounts and regions.

Type annotations and code completion for session.client("config").put_configuration_aggregator method. boto3 documentation

Method definition
await def put_configuration_aggregator(
    self,
    *,
    ConfigurationAggregatorName: str,
    AccountAggregationSources: Sequence[AccountAggregationSourceTypeDef] = ...,  # (1)
    OrganizationAggregationSource: OrganizationAggregationSourceTypeDef = ...,  # (2)
    Tags: Sequence[TagTypeDef] = ...,  # (3)
) -> PutConfigurationAggregatorResponseTypeDef:  # (4)
    ...
  1. See AccountAggregationSourceTypeDef
  2. See OrganizationAggregationSourceTypeDef
  3. See TagTypeDef
  4. See PutConfigurationAggregatorResponseTypeDef
Usage example with kwargs
kwargs: PutConfigurationAggregatorRequestRequestTypeDef = {  # (1)
    "ConfigurationAggregatorName": ...,
}

parent.put_configuration_aggregator(**kwargs)
  1. See PutConfigurationAggregatorRequestRequestTypeDef

put_configuration_recorder

Creates a new configuration recorder to record the selected resource configurations.

Type annotations and code completion for session.client("config").put_configuration_recorder method. boto3 documentation

Method definition
await def put_configuration_recorder(
    self,
    *,
    ConfigurationRecorder: ConfigurationRecorderTypeDef,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See ConfigurationRecorderTypeDef
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: PutConfigurationRecorderRequestRequestTypeDef = {  # (1)
    "ConfigurationRecorder": ...,
}

parent.put_configuration_recorder(**kwargs)
  1. See PutConfigurationRecorderRequestRequestTypeDef

put_conformance_pack

.

Type annotations and code completion for session.client("config").put_conformance_pack method. boto3 documentation

Method definition
await def put_conformance_pack(
    self,
    *,
    ConformancePackName: str,
    TemplateS3Uri: str = ...,
    TemplateBody: str = ...,
    DeliveryS3Bucket: str = ...,
    DeliveryS3KeyPrefix: str = ...,
    ConformancePackInputParameters: Sequence[ConformancePackInputParameterTypeDef] = ...,  # (1)
    TemplateSSMDocumentDetails: TemplateSSMDocumentDetailsTypeDef = ...,  # (2)
) -> PutConformancePackResponseTypeDef:  # (3)
    ...
  1. See ConformancePackInputParameterTypeDef
  2. See TemplateSSMDocumentDetailsTypeDef
  3. See PutConformancePackResponseTypeDef
Usage example with kwargs
kwargs: PutConformancePackRequestRequestTypeDef = {  # (1)
    "ConformancePackName": ...,
}

parent.put_conformance_pack(**kwargs)
  1. See PutConformancePackRequestRequestTypeDef

put_delivery_channel

Creates a delivery channel object to deliver configuration information to an Amazon S3 bucket and Amazon SNS topic.

Type annotations and code completion for session.client("config").put_delivery_channel method. boto3 documentation

Method definition
await def put_delivery_channel(
    self,
    *,
    DeliveryChannel: DeliveryChannelTypeDef,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See DeliveryChannelTypeDef
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: PutDeliveryChannelRequestRequestTypeDef = {  # (1)
    "DeliveryChannel": ...,
}

parent.put_delivery_channel(**kwargs)
  1. See PutDeliveryChannelRequestRequestTypeDef

put_evaluations

Used by an Lambda function to deliver evaluation results to Config.

Type annotations and code completion for session.client("config").put_evaluations method. boto3 documentation

Method definition
await def put_evaluations(
    self,
    *,
    ResultToken: str,
    Evaluations: Sequence[EvaluationTypeDef] = ...,  # (1)
    TestMode: bool = ...,
) -> PutEvaluationsResponseTypeDef:  # (2)
    ...
  1. See EvaluationTypeDef
  2. See PutEvaluationsResponseTypeDef
Usage example with kwargs
kwargs: PutEvaluationsRequestRequestTypeDef = {  # (1)
    "ResultToken": ...,
}

parent.put_evaluations(**kwargs)
  1. See PutEvaluationsRequestRequestTypeDef

put_external_evaluation

Add or updates the evaluations for process checks.

Type annotations and code completion for session.client("config").put_external_evaluation method. boto3 documentation

Method definition
await def put_external_evaluation(
    self,
    *,
    ConfigRuleName: str,
    ExternalEvaluation: ExternalEvaluationTypeDef,  # (1)
) -> Dict[str, Any]:
    ...
  1. See ExternalEvaluationTypeDef
Usage example with kwargs
kwargs: PutExternalEvaluationRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
    "ExternalEvaluation": ...,
}

parent.put_external_evaluation(**kwargs)
  1. See PutExternalEvaluationRequestRequestTypeDef

put_organization_config_rule

.

Type annotations and code completion for session.client("config").put_organization_config_rule method. boto3 documentation

Method definition
await def put_organization_config_rule(
    self,
    *,
    OrganizationConfigRuleName: str,
    OrganizationManagedRuleMetadata: OrganizationManagedRuleMetadataTypeDef = ...,  # (1)
    OrganizationCustomRuleMetadata: OrganizationCustomRuleMetadataTypeDef = ...,  # (2)
    ExcludedAccounts: Sequence[str] = ...,
    OrganizationCustomPolicyRuleMetadata: OrganizationCustomPolicyRuleMetadataTypeDef = ...,  # (3)
) -> PutOrganizationConfigRuleResponseTypeDef:  # (4)
    ...
  1. See OrganizationManagedRuleMetadataTypeDef
  2. See OrganizationCustomRuleMetadataTypeDef
  3. See OrganizationCustomPolicyRuleMetadataTypeDef
  4. See PutOrganizationConfigRuleResponseTypeDef
Usage example with kwargs
kwargs: PutOrganizationConfigRuleRequestRequestTypeDef = {  # (1)
    "OrganizationConfigRuleName": ...,
}

parent.put_organization_config_rule(**kwargs)
  1. See PutOrganizationConfigRuleRequestRequestTypeDef

put_organization_conformance_pack

.

Type annotations and code completion for session.client("config").put_organization_conformance_pack method. boto3 documentation

Method definition
await def put_organization_conformance_pack(
    self,
    *,
    OrganizationConformancePackName: str,
    TemplateS3Uri: str = ...,
    TemplateBody: str = ...,
    DeliveryS3Bucket: str = ...,
    DeliveryS3KeyPrefix: str = ...,
    ConformancePackInputParameters: Sequence[ConformancePackInputParameterTypeDef] = ...,  # (1)
    ExcludedAccounts: Sequence[str] = ...,
) -> PutOrganizationConformancePackResponseTypeDef:  # (2)
    ...
  1. See ConformancePackInputParameterTypeDef
  2. See PutOrganizationConformancePackResponseTypeDef
Usage example with kwargs
kwargs: PutOrganizationConformancePackRequestRequestTypeDef = {  # (1)
    "OrganizationConformancePackName": ...,
}

parent.put_organization_conformance_pack(**kwargs)
  1. See PutOrganizationConformancePackRequestRequestTypeDef

put_remediation_configurations

Adds or updates the remediation configuration with a specific Config rule with the selected target or action.

Type annotations and code completion for session.client("config").put_remediation_configurations method. boto3 documentation

Method definition
await def put_remediation_configurations(
    self,
    *,
    RemediationConfigurations: Sequence[RemediationConfigurationTypeDef],  # (1)
) -> PutRemediationConfigurationsResponseTypeDef:  # (2)
    ...
  1. See RemediationConfigurationTypeDef
  2. See PutRemediationConfigurationsResponseTypeDef
Usage example with kwargs
kwargs: PutRemediationConfigurationsRequestRequestTypeDef = {  # (1)
    "RemediationConfigurations": ...,
}

parent.put_remediation_configurations(**kwargs)
  1. See PutRemediationConfigurationsRequestRequestTypeDef

put_remediation_exceptions

A remediation exception is when a specific resource is no longer considered for auto-remediation.

Type annotations and code completion for session.client("config").put_remediation_exceptions method. boto3 documentation

Method definition
await def put_remediation_exceptions(
    self,
    *,
    ConfigRuleName: str,
    ResourceKeys: Sequence[RemediationExceptionResourceKeyTypeDef],  # (1)
    Message: str = ...,
    ExpirationTime: Union[datetime, str] = ...,
) -> PutRemediationExceptionsResponseTypeDef:  # (2)
    ...
  1. See RemediationExceptionResourceKeyTypeDef
  2. See PutRemediationExceptionsResponseTypeDef
Usage example with kwargs
kwargs: PutRemediationExceptionsRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
    "ResourceKeys": ...,
}

parent.put_remediation_exceptions(**kwargs)
  1. See PutRemediationExceptionsRequestRequestTypeDef

put_resource_config

Records the configuration state for the resource provided in the request.

Type annotations and code completion for session.client("config").put_resource_config method. boto3 documentation

Method definition
await def put_resource_config(
    self,
    *,
    ResourceType: str,
    SchemaVersionId: str,
    ResourceId: str,
    Configuration: str,
    ResourceName: str = ...,
    Tags: Mapping[str, str] = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: PutResourceConfigRequestRequestTypeDef = {  # (1)
    "ResourceType": ...,
    "SchemaVersionId": ...,
    "ResourceId": ...,
    "Configuration": ...,
}

parent.put_resource_config(**kwargs)
  1. See PutResourceConfigRequestRequestTypeDef

put_retention_configuration

Creates and updates the retention configuration with details about retention period (number of days) that Config stores your historical information.

Type annotations and code completion for session.client("config").put_retention_configuration method. boto3 documentation

Method definition
await def put_retention_configuration(
    self,
    *,
    RetentionPeriodInDays: int,
) -> PutRetentionConfigurationResponseTypeDef:  # (1)
    ...
  1. See PutRetentionConfigurationResponseTypeDef
Usage example with kwargs
kwargs: PutRetentionConfigurationRequestRequestTypeDef = {  # (1)
    "RetentionPeriodInDays": ...,
}

parent.put_retention_configuration(**kwargs)
  1. See PutRetentionConfigurationRequestRequestTypeDef

put_stored_query

Saves a new query or updates an existing saved query.

Type annotations and code completion for session.client("config").put_stored_query method. boto3 documentation

Method definition
await def put_stored_query(
    self,
    *,
    StoredQuery: StoredQueryTypeDef,  # (1)
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> PutStoredQueryResponseTypeDef:  # (3)
    ...
  1. See StoredQueryTypeDef
  2. See TagTypeDef
  3. See PutStoredQueryResponseTypeDef
Usage example with kwargs
kwargs: PutStoredQueryRequestRequestTypeDef = {  # (1)
    "StoredQuery": ...,
}

parent.put_stored_query(**kwargs)
  1. See PutStoredQueryRequestRequestTypeDef

select_aggregate_resource_config

.

Type annotations and code completion for session.client("config").select_aggregate_resource_config method. boto3 documentation

Method definition
await def select_aggregate_resource_config(
    self,
    *,
    Expression: str,
    ConfigurationAggregatorName: str,
    Limit: int = ...,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> SelectAggregateResourceConfigResponseTypeDef:  # (1)
    ...
  1. See SelectAggregateResourceConfigResponseTypeDef
Usage example with kwargs
kwargs: SelectAggregateResourceConfigRequestRequestTypeDef = {  # (1)
    "Expression": ...,
    "ConfigurationAggregatorName": ...,
}

parent.select_aggregate_resource_config(**kwargs)
  1. See SelectAggregateResourceConfigRequestRequestTypeDef

select_resource_config

.

Type annotations and code completion for session.client("config").select_resource_config method. boto3 documentation

Method definition
await def select_resource_config(
    self,
    *,
    Expression: str,
    Limit: int = ...,
    NextToken: str = ...,
) -> SelectResourceConfigResponseTypeDef:  # (1)
    ...
  1. See SelectResourceConfigResponseTypeDef
Usage example with kwargs
kwargs: SelectResourceConfigRequestRequestTypeDef = {  # (1)
    "Expression": ...,
}

parent.select_resource_config(**kwargs)
  1. See SelectResourceConfigRequestRequestTypeDef

start_config_rules_evaluation

Runs an on-demand evaluation for the specified Config rules against the last known configuration state of the resources.

Type annotations and code completion for session.client("config").start_config_rules_evaluation method. boto3 documentation

Method definition
await def start_config_rules_evaluation(
    self,
    *,
    ConfigRuleNames: Sequence[str] = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: StartConfigRulesEvaluationRequestRequestTypeDef = {  # (1)
    "ConfigRuleNames": ...,
}

parent.start_config_rules_evaluation(**kwargs)
  1. See StartConfigRulesEvaluationRequestRequestTypeDef

start_configuration_recorder

Starts recording configurations of the Amazon Web Services resources you have selected to record in your Amazon Web Services account.

Type annotations and code completion for session.client("config").start_configuration_recorder method. boto3 documentation

Method definition
await def start_configuration_recorder(
    self,
    *,
    ConfigurationRecorderName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: StartConfigurationRecorderRequestRequestTypeDef = {  # (1)
    "ConfigurationRecorderName": ...,
}

parent.start_configuration_recorder(**kwargs)
  1. See StartConfigurationRecorderRequestRequestTypeDef

start_remediation_execution

Runs an on-demand remediation for the specified Config rules against the last known remediation configuration.

Type annotations and code completion for session.client("config").start_remediation_execution method. boto3 documentation

Method definition
await def start_remediation_execution(
    self,
    *,
    ConfigRuleName: str,
    ResourceKeys: Sequence[ResourceKeyTypeDef],  # (1)
) -> StartRemediationExecutionResponseTypeDef:  # (2)
    ...
  1. See ResourceKeyTypeDef
  2. See StartRemediationExecutionResponseTypeDef
Usage example with kwargs
kwargs: StartRemediationExecutionRequestRequestTypeDef = {  # (1)
    "ConfigRuleName": ...,
    "ResourceKeys": ...,
}

parent.start_remediation_execution(**kwargs)
  1. See StartRemediationExecutionRequestRequestTypeDef

stop_configuration_recorder

Stops recording configurations of the Amazon Web Services resources you have selected to record in your Amazon Web Services account.

Type annotations and code completion for session.client("config").stop_configuration_recorder method. boto3 documentation

Method definition
await def stop_configuration_recorder(
    self,
    *,
    ConfigurationRecorderName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: StopConfigurationRecorderRequestRequestTypeDef = {  # (1)
    "ConfigurationRecorderName": ...,
}

parent.stop_configuration_recorder(**kwargs)
  1. See StopConfigurationRecorderRequestRequestTypeDef

tag_resource

Associates the specified tags to a resource with the specified resourceArn.

Type annotations and code completion for session.client("config").tag_resource method. boto3 documentation

Method definition
await def tag_resource(
    self,
    *,
    ResourceArn: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "ResourceArn": ...,
    "Tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource

Deletes specified tags from a resource.

Type annotations and code completion for session.client("config").untag_resource method. boto3 documentation

Method definition
await def untag_resource(
    self,
    *,
    ResourceArn: str,
    TagKeys: Sequence[str],
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "ResourceArn": ...,
    "TagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

__aenter__

Type annotations and code completion for session.client("config").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> ConfigServiceClient:
    ...

__aexit__

Type annotations and code completion for session.client("config").__aexit__ method. boto3 documentation

Method definition
await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator

Type annotations and code completion for session.client("config").get_paginator method with overloads.