ConfigServiceClient
Index > ConfigService > ConfigServiceClient
Auto-generated documentation for ConfigService type annotations stubs module mypy-boto3-config.
ConfigServiceClient
Type annotations and code completion for boto3.client("config")
.
boto3 documentation
from boto3.session import Session
from mypy_boto3_config.client import ConfigServiceClient
def get_config_client() -> ConfigServiceClient:
return Session().client("config")
Exceptions
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("config").exceptions
structure.
client = boto3.client("config")
try:
do_something(client)
except (
client.ClientError,
client.ConformancePackTemplateValidationException,
client.IdempotentParameterMismatch,
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)
from mypy_boto3_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 boto3.client("config").batch_get_aggregate_resource_config
method.
boto3 documentation
def batch_get_aggregate_resource_config(
self,
*,
ConfigurationAggregatorName: str,
ResourceIdentifiers: Sequence[AggregateResourceIdentifierTypeDef], # (1)
) -> BatchGetAggregateResourceConfigResponseTypeDef: # (2)
...
kwargs: BatchGetAggregateResourceConfigRequestRequestTypeDef = { # (1)
"ConfigurationAggregatorName": ...,
"ResourceIdentifiers": ...,
}
parent.batch_get_aggregate_resource_config(**kwargs)
batch_get_resource_config
Returns the BaseConfigurationItem
for one or more requested resources.
Type annotations and code completion for boto3.client("config").batch_get_resource_config
method.
boto3 documentation
def batch_get_resource_config(
self,
*,
resourceKeys: Sequence[ResourceKeyTypeDef], # (1)
) -> BatchGetResourceConfigResponseTypeDef: # (2)
...
kwargs: BatchGetResourceConfigRequestRequestTypeDef = { # (1)
"resourceKeys": ...,
}
parent.batch_get_resource_config(**kwargs)
can_paginate
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("config").can_paginate
method.
boto3 documentation
close
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("config").close
method.
boto3 documentation
delete_aggregation_authorization
Deletes the authorization granted to the specified configuration aggregator account in a specified region.
Type annotations and code completion for boto3.client("config").delete_aggregation_authorization
method.
boto3 documentation
def delete_aggregation_authorization(
self,
*,
AuthorizedAccountId: str,
AuthorizedAwsRegion: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteAggregationAuthorizationRequestRequestTypeDef = { # (1)
"AuthorizedAccountId": ...,
"AuthorizedAwsRegion": ...,
}
parent.delete_aggregation_authorization(**kwargs)
delete_config_rule
Deletes the specified Config rule and all of its evaluation results.
Type annotations and code completion for boto3.client("config").delete_config_rule
method.
boto3 documentation
def delete_config_rule(
self,
*,
ConfigRuleName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteConfigRuleRequestRequestTypeDef = { # (1)
"ConfigRuleName": ...,
}
parent.delete_config_rule(**kwargs)
delete_configuration_aggregator
Deletes the specified configuration aggregator and the aggregated data associated with the aggregator.
Type annotations and code completion for boto3.client("config").delete_configuration_aggregator
method.
boto3 documentation
def delete_configuration_aggregator(
self,
*,
ConfigurationAggregatorName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteConfigurationAggregatorRequestRequestTypeDef = { # (1)
"ConfigurationAggregatorName": ...,
}
parent.delete_configuration_aggregator(**kwargs)
delete_configuration_recorder
Deletes the configuration recorder.
Type annotations and code completion for boto3.client("config").delete_configuration_recorder
method.
boto3 documentation
def delete_configuration_recorder(
self,
*,
ConfigurationRecorderName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteConfigurationRecorderRequestRequestTypeDef = { # (1)
"ConfigurationRecorderName": ...,
}
parent.delete_configuration_recorder(**kwargs)
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 boto3.client("config").delete_conformance_pack
method.
boto3 documentation
def delete_conformance_pack(
self,
*,
ConformancePackName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteConformancePackRequestRequestTypeDef = { # (1)
"ConformancePackName": ...,
}
parent.delete_conformance_pack(**kwargs)
delete_delivery_channel
Deletes the delivery channel.
Type annotations and code completion for boto3.client("config").delete_delivery_channel
method.
boto3 documentation
def delete_delivery_channel(
self,
*,
DeliveryChannelName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteDeliveryChannelRequestRequestTypeDef = { # (1)
"DeliveryChannelName": ...,
}
parent.delete_delivery_channel(**kwargs)
delete_evaluation_results
Deletes the evaluation results for the specified Config rule.
Type annotations and code completion for boto3.client("config").delete_evaluation_results
method.
boto3 documentation
def delete_evaluation_results(
self,
*,
ConfigRuleName: str,
) -> Dict[str, Any]:
...
kwargs: DeleteEvaluationResultsRequestRequestTypeDef = { # (1)
"ConfigRuleName": ...,
}
parent.delete_evaluation_results(**kwargs)
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 boto3.client("config").delete_organization_config_rule
method.
boto3 documentation
def delete_organization_config_rule(
self,
*,
OrganizationConfigRuleName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteOrganizationConfigRuleRequestRequestTypeDef = { # (1)
"OrganizationConfigRuleName": ...,
}
parent.delete_organization_config_rule(**kwargs)
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 boto3.client("config").delete_organization_conformance_pack
method.
boto3 documentation
def delete_organization_conformance_pack(
self,
*,
OrganizationConformancePackName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteOrganizationConformancePackRequestRequestTypeDef = { # (1)
"OrganizationConformancePackName": ...,
}
parent.delete_organization_conformance_pack(**kwargs)
delete_pending_aggregation_request
Deletes pending authorization requests for a specified aggregator account in a specified region.
Type annotations and code completion for boto3.client("config").delete_pending_aggregation_request
method.
boto3 documentation
def delete_pending_aggregation_request(
self,
*,
RequesterAccountId: str,
RequesterAwsRegion: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeletePendingAggregationRequestRequestRequestTypeDef = { # (1)
"RequesterAccountId": ...,
"RequesterAwsRegion": ...,
}
parent.delete_pending_aggregation_request(**kwargs)
delete_remediation_configuration
Deletes the remediation configuration.
Type annotations and code completion for boto3.client("config").delete_remediation_configuration
method.
boto3 documentation
def delete_remediation_configuration(
self,
*,
ConfigRuleName: str,
ResourceType: str = ...,
) -> Dict[str, Any]:
...
kwargs: DeleteRemediationConfigurationRequestRequestTypeDef = { # (1)
"ConfigRuleName": ...,
}
parent.delete_remediation_configuration(**kwargs)
delete_remediation_exceptions
Deletes one or more remediation exceptions mentioned in the resource keys.
Type annotations and code completion for boto3.client("config").delete_remediation_exceptions
method.
boto3 documentation
def delete_remediation_exceptions(
self,
*,
ConfigRuleName: str,
ResourceKeys: Sequence[RemediationExceptionResourceKeyTypeDef], # (1)
) -> DeleteRemediationExceptionsResponseTypeDef: # (2)
...
kwargs: DeleteRemediationExceptionsRequestRequestTypeDef = { # (1)
"ConfigRuleName": ...,
"ResourceKeys": ...,
}
parent.delete_remediation_exceptions(**kwargs)
delete_resource_config
Records the configuration state for a custom resource that has been deleted.
Type annotations and code completion for boto3.client("config").delete_resource_config
method.
boto3 documentation
def delete_resource_config(
self,
*,
ResourceType: str,
ResourceId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteResourceConfigRequestRequestTypeDef = { # (1)
"ResourceType": ...,
"ResourceId": ...,
}
parent.delete_resource_config(**kwargs)
delete_retention_configuration
Deletes the retention configuration.
Type annotations and code completion for boto3.client("config").delete_retention_configuration
method.
boto3 documentation
def delete_retention_configuration(
self,
*,
RetentionConfigurationName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteRetentionConfigurationRequestRequestTypeDef = { # (1)
"RetentionConfigurationName": ...,
}
parent.delete_retention_configuration(**kwargs)
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 boto3.client("config").delete_stored_query
method.
boto3 documentation
kwargs: DeleteStoredQueryRequestRequestTypeDef = { # (1)
"QueryName": ...,
}
parent.delete_stored_query(**kwargs)
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 boto3.client("config").deliver_config_snapshot
method.
boto3 documentation
def deliver_config_snapshot(
self,
*,
deliveryChannelName: str,
) -> DeliverConfigSnapshotResponseTypeDef: # (1)
...
kwargs: DeliverConfigSnapshotRequestRequestTypeDef = { # (1)
"deliveryChannelName": ...,
}
parent.deliver_config_snapshot(**kwargs)
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 boto3.client("config").describe_aggregate_compliance_by_config_rules
method.
boto3 documentation
def describe_aggregate_compliance_by_config_rules(
self,
*,
ConfigurationAggregatorName: str,
Filters: ConfigRuleComplianceFiltersTypeDef = ..., # (1)
Limit: int = ...,
NextToken: str = ...,
) -> DescribeAggregateComplianceByConfigRulesResponseTypeDef: # (2)
...
kwargs: DescribeAggregateComplianceByConfigRulesRequestRequestTypeDef = { # (1)
"ConfigurationAggregatorName": ...,
}
parent.describe_aggregate_compliance_by_config_rules(**kwargs)
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 boto3.client("config").describe_aggregate_compliance_by_conformance_packs
method.
boto3 documentation
def describe_aggregate_compliance_by_conformance_packs(
self,
*,
ConfigurationAggregatorName: str,
Filters: AggregateConformancePackComplianceFiltersTypeDef = ..., # (1)
Limit: int = ...,
NextToken: str = ...,
) -> DescribeAggregateComplianceByConformancePacksResponseTypeDef: # (2)
...
- See AggregateConformancePackComplianceFiltersTypeDef
- See DescribeAggregateComplianceByConformancePacksResponseTypeDef
kwargs: DescribeAggregateComplianceByConformancePacksRequestRequestTypeDef = { # (1)
"ConfigurationAggregatorName": ...,
}
parent.describe_aggregate_compliance_by_conformance_packs(**kwargs)
describe_aggregation_authorizations
Returns a list of authorizations granted to various aggregator accounts and regions.
Type annotations and code completion for boto3.client("config").describe_aggregation_authorizations
method.
boto3 documentation
def describe_aggregation_authorizations(
self,
*,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeAggregationAuthorizationsResponseTypeDef: # (1)
...
kwargs: DescribeAggregationAuthorizationsRequestRequestTypeDef = { # (1)
"Limit": ...,
}
parent.describe_aggregation_authorizations(**kwargs)
describe_compliance_by_config_rule
Indicates whether the specified Config rules are compliant.
Type annotations and code completion for boto3.client("config").describe_compliance_by_config_rule
method.
boto3 documentation
def describe_compliance_by_config_rule(
self,
*,
ConfigRuleNames: Sequence[str] = ...,
ComplianceTypes: Sequence[ComplianceTypeType] = ..., # (1)
NextToken: str = ...,
) -> DescribeComplianceByConfigRuleResponseTypeDef: # (2)
...
kwargs: DescribeComplianceByConfigRuleRequestRequestTypeDef = { # (1)
"ConfigRuleNames": ...,
}
parent.describe_compliance_by_config_rule(**kwargs)
describe_compliance_by_resource
Indicates whether the specified Amazon Web Services resources are compliant.
Type annotations and code completion for boto3.client("config").describe_compliance_by_resource
method.
boto3 documentation
def describe_compliance_by_resource(
self,
*,
ResourceType: str = ...,
ResourceId: str = ...,
ComplianceTypes: Sequence[ComplianceTypeType] = ..., # (1)
Limit: int = ...,
NextToken: str = ...,
) -> DescribeComplianceByResourceResponseTypeDef: # (2)
...
kwargs: DescribeComplianceByResourceRequestRequestTypeDef = { # (1)
"ResourceType": ...,
}
parent.describe_compliance_by_resource(**kwargs)
describe_config_rule_evaluation_status
Returns status information for each of your Config managed rules.
Type annotations and code completion for boto3.client("config").describe_config_rule_evaluation_status
method.
boto3 documentation
def describe_config_rule_evaluation_status(
self,
*,
ConfigRuleNames: Sequence[str] = ...,
NextToken: str = ...,
Limit: int = ...,
) -> DescribeConfigRuleEvaluationStatusResponseTypeDef: # (1)
...
kwargs: DescribeConfigRuleEvaluationStatusRequestRequestTypeDef = { # (1)
"ConfigRuleNames": ...,
}
parent.describe_config_rule_evaluation_status(**kwargs)
describe_config_rules
Returns details about your Config rules.
Type annotations and code completion for boto3.client("config").describe_config_rules
method.
boto3 documentation
def describe_config_rules(
self,
*,
ConfigRuleNames: Sequence[str] = ...,
NextToken: str = ...,
Filters: DescribeConfigRulesFiltersTypeDef = ..., # (1)
) -> DescribeConfigRulesResponseTypeDef: # (2)
...
kwargs: DescribeConfigRulesRequestRequestTypeDef = { # (1)
"ConfigRuleNames": ...,
}
parent.describe_config_rules(**kwargs)
describe_configuration_aggregator_sources_status
Returns status information for sources within an aggregator.
Type annotations and code completion for boto3.client("config").describe_configuration_aggregator_sources_status
method.
boto3 documentation
def describe_configuration_aggregator_sources_status(
self,
*,
ConfigurationAggregatorName: str,
UpdateStatus: Sequence[AggregatedSourceStatusTypeType] = ..., # (1)
NextToken: str = ...,
Limit: int = ...,
) -> DescribeConfigurationAggregatorSourcesStatusResponseTypeDef: # (2)
...
kwargs: DescribeConfigurationAggregatorSourcesStatusRequestRequestTypeDef = { # (1)
"ConfigurationAggregatorName": ...,
}
parent.describe_configuration_aggregator_sources_status(**kwargs)
describe_configuration_aggregators
Returns the details of one or more configuration aggregators.
Type annotations and code completion for boto3.client("config").describe_configuration_aggregators
method.
boto3 documentation
def describe_configuration_aggregators(
self,
*,
ConfigurationAggregatorNames: Sequence[str] = ...,
NextToken: str = ...,
Limit: int = ...,
) -> DescribeConfigurationAggregatorsResponseTypeDef: # (1)
...
kwargs: DescribeConfigurationAggregatorsRequestRequestTypeDef = { # (1)
"ConfigurationAggregatorNames": ...,
}
parent.describe_configuration_aggregators(**kwargs)
describe_configuration_recorder_status
Returns the current status of the specified configuration recorder.
Type annotations and code completion for boto3.client("config").describe_configuration_recorder_status
method.
boto3 documentation
def describe_configuration_recorder_status(
self,
*,
ConfigurationRecorderNames: Sequence[str] = ...,
) -> DescribeConfigurationRecorderStatusResponseTypeDef: # (1)
...
kwargs: DescribeConfigurationRecorderStatusRequestRequestTypeDef = { # (1)
"ConfigurationRecorderNames": ...,
}
parent.describe_configuration_recorder_status(**kwargs)
describe_configuration_recorders
Returns the details for the specified configuration recorders.
Type annotations and code completion for boto3.client("config").describe_configuration_recorders
method.
boto3 documentation
def describe_configuration_recorders(
self,
*,
ConfigurationRecorderNames: Sequence[str] = ...,
) -> DescribeConfigurationRecordersResponseTypeDef: # (1)
...
kwargs: DescribeConfigurationRecordersRequestRequestTypeDef = { # (1)
"ConfigurationRecorderNames": ...,
}
parent.describe_configuration_recorders(**kwargs)
describe_conformance_pack_compliance
Returns compliance details for each rule in that conformance pack.
Type annotations and code completion for boto3.client("config").describe_conformance_pack_compliance
method.
boto3 documentation
def describe_conformance_pack_compliance(
self,
*,
ConformancePackName: str,
Filters: ConformancePackComplianceFiltersTypeDef = ..., # (1)
Limit: int = ...,
NextToken: str = ...,
) -> DescribeConformancePackComplianceResponseTypeDef: # (2)
...
kwargs: DescribeConformancePackComplianceRequestRequestTypeDef = { # (1)
"ConformancePackName": ...,
}
parent.describe_conformance_pack_compliance(**kwargs)
describe_conformance_pack_status
Provides one or more conformance packs deployment status.
Type annotations and code completion for boto3.client("config").describe_conformance_pack_status
method.
boto3 documentation
def describe_conformance_pack_status(
self,
*,
ConformancePackNames: Sequence[str] = ...,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeConformancePackStatusResponseTypeDef: # (1)
...
kwargs: DescribeConformancePackStatusRequestRequestTypeDef = { # (1)
"ConformancePackNames": ...,
}
parent.describe_conformance_pack_status(**kwargs)
describe_conformance_packs
Returns a list of one or more conformance packs.
Type annotations and code completion for boto3.client("config").describe_conformance_packs
method.
boto3 documentation
def describe_conformance_packs(
self,
*,
ConformancePackNames: Sequence[str] = ...,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeConformancePacksResponseTypeDef: # (1)
...
kwargs: DescribeConformancePacksRequestRequestTypeDef = { # (1)
"ConformancePackNames": ...,
}
parent.describe_conformance_packs(**kwargs)
describe_delivery_channel_status
Returns the current status of the specified delivery channel.
Type annotations and code completion for boto3.client("config").describe_delivery_channel_status
method.
boto3 documentation
def describe_delivery_channel_status(
self,
*,
DeliveryChannelNames: Sequence[str] = ...,
) -> DescribeDeliveryChannelStatusResponseTypeDef: # (1)
...
kwargs: DescribeDeliveryChannelStatusRequestRequestTypeDef = { # (1)
"DeliveryChannelNames": ...,
}
parent.describe_delivery_channel_status(**kwargs)
describe_delivery_channels
Returns details about the specified delivery channel.
Type annotations and code completion for boto3.client("config").describe_delivery_channels
method.
boto3 documentation
def describe_delivery_channels(
self,
*,
DeliveryChannelNames: Sequence[str] = ...,
) -> DescribeDeliveryChannelsResponseTypeDef: # (1)
...
kwargs: DescribeDeliveryChannelsRequestRequestTypeDef = { # (1)
"DeliveryChannelNames": ...,
}
parent.describe_delivery_channels(**kwargs)
describe_organization_config_rule_statuses
Provides organization Config rule deployment status for an organization.
Type annotations and code completion for boto3.client("config").describe_organization_config_rule_statuses
method.
boto3 documentation
def describe_organization_config_rule_statuses(
self,
*,
OrganizationConfigRuleNames: Sequence[str] = ...,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeOrganizationConfigRuleStatusesResponseTypeDef: # (1)
...
kwargs: DescribeOrganizationConfigRuleStatusesRequestRequestTypeDef = { # (1)
"OrganizationConfigRuleNames": ...,
}
parent.describe_organization_config_rule_statuses(**kwargs)
describe_organization_config_rules
Returns a list of organization Config rules.
Type annotations and code completion for boto3.client("config").describe_organization_config_rules
method.
boto3 documentation
def describe_organization_config_rules(
self,
*,
OrganizationConfigRuleNames: Sequence[str] = ...,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeOrganizationConfigRulesResponseTypeDef: # (1)
...
kwargs: DescribeOrganizationConfigRulesRequestRequestTypeDef = { # (1)
"OrganizationConfigRuleNames": ...,
}
parent.describe_organization_config_rules(**kwargs)
describe_organization_conformance_pack_statuses
Provides organization conformance pack deployment status for an organization.
Type annotations and code completion for boto3.client("config").describe_organization_conformance_pack_statuses
method.
boto3 documentation
def describe_organization_conformance_pack_statuses(
self,
*,
OrganizationConformancePackNames: Sequence[str] = ...,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeOrganizationConformancePackStatusesResponseTypeDef: # (1)
...
kwargs: DescribeOrganizationConformancePackStatusesRequestRequestTypeDef = { # (1)
"OrganizationConformancePackNames": ...,
}
parent.describe_organization_conformance_pack_statuses(**kwargs)
describe_organization_conformance_packs
Returns a list of organization conformance packs.
Type annotations and code completion for boto3.client("config").describe_organization_conformance_packs
method.
boto3 documentation
def describe_organization_conformance_packs(
self,
*,
OrganizationConformancePackNames: Sequence[str] = ...,
Limit: int = ...,
NextToken: str = ...,
) -> DescribeOrganizationConformancePacksResponseTypeDef: # (1)
...
kwargs: DescribeOrganizationConformancePacksRequestRequestTypeDef = { # (1)
"OrganizationConformancePackNames": ...,
}
parent.describe_organization_conformance_packs(**kwargs)
describe_pending_aggregation_requests
Returns a list of all pending aggregation requests.
Type annotations and code completion for boto3.client("config").describe_pending_aggregation_requests
method.
boto3 documentation
def describe_pending_aggregation_requests(
self,
*,
Limit: int = ...,
NextToken: str = ...,
) -> DescribePendingAggregationRequestsResponseTypeDef: # (1)
...
kwargs: DescribePendingAggregationRequestsRequestRequestTypeDef = { # (1)
"Limit": ...,
}
parent.describe_pending_aggregation_requests(**kwargs)
describe_remediation_configurations
Returns the details of one or more remediation configurations.
Type annotations and code completion for boto3.client("config").describe_remediation_configurations
method.
boto3 documentation
def describe_remediation_configurations(
self,
*,
ConfigRuleNames: Sequence[str],
) -> DescribeRemediationConfigurationsResponseTypeDef: # (1)
...
kwargs: DescribeRemediationConfigurationsRequestRequestTypeDef = { # (1)
"ConfigRuleNames": ...,
}
parent.describe_remediation_configurations(**kwargs)
describe_remediation_exceptions
Returns the details of one or more remediation exceptions.
Type annotations and code completion for boto3.client("config").describe_remediation_exceptions
method.
boto3 documentation
def describe_remediation_exceptions(
self,
*,
ConfigRuleName: str,
ResourceKeys: Sequence[RemediationExceptionResourceKeyTypeDef] = ..., # (1)
Limit: int = ...,
NextToken: str = ...,
) -> DescribeRemediationExceptionsResponseTypeDef: # (2)
...
kwargs: DescribeRemediationExceptionsRequestRequestTypeDef = { # (1)
"ConfigRuleName": ...,
}
parent.describe_remediation_exceptions(**kwargs)
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 boto3.client("config").describe_remediation_execution_status
method.