configservice

package
v1.51.28 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 24, 2024 License: Apache-2.0 Imports: 10 Imported by: 208

Documentation

Overview

Package configservice provides the client and types for making API requests to AWS Config.

Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see Supported Amazon Web Services resources (https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources).

You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Command Line Interface (Amazon Web Services CLI), the Config API, or the Amazon Web Services SDKs for Config. This reference guide contains documentation for the Config API and the Amazon Web Services CLI commands that you can use to manage Config. The Config API uses the Signature Version 4 protocol for signing requests. For more information about how to sign a request with this protocol, see Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). For detailed information about Config features and their associated actions or commands, as well as how to work with Amazon Web Services Management Console, see What Is Config (https://docs.aws.amazon.com/config/latest/developerguide/WhatIsConfig.html) in the Config Developer Guide.

See https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12 for more information on this service.

See configservice package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/configservice/

Using the Client

To contact AWS Config with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the AWS Config client ConfigService for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/configservice/#New

Index

Constants

View Source
const (
	// AggregateConformancePackComplianceSummaryGroupKeyAccountId is a AggregateConformancePackComplianceSummaryGroupKey enum value
	AggregateConformancePackComplianceSummaryGroupKeyAccountId = "ACCOUNT_ID"

	// AggregateConformancePackComplianceSummaryGroupKeyAwsRegion is a AggregateConformancePackComplianceSummaryGroupKey enum value
	AggregateConformancePackComplianceSummaryGroupKeyAwsRegion = "AWS_REGION"
)
View Source
const (
	// AggregatedSourceStatusTypeFailed is a AggregatedSourceStatusType enum value
	AggregatedSourceStatusTypeFailed = "FAILED"

	// AggregatedSourceStatusTypeSucceeded is a AggregatedSourceStatusType enum value
	AggregatedSourceStatusTypeSucceeded = "SUCCEEDED"

	// AggregatedSourceStatusTypeOutdated is a AggregatedSourceStatusType enum value
	AggregatedSourceStatusTypeOutdated = "OUTDATED"
)
View Source
const (
	// AggregatedSourceTypeAccount is a AggregatedSourceType enum value
	AggregatedSourceTypeAccount = "ACCOUNT"

	// AggregatedSourceTypeOrganization is a AggregatedSourceType enum value
	AggregatedSourceTypeOrganization = "ORGANIZATION"
)
View Source
const (
	// ChronologicalOrderReverse is a ChronologicalOrder enum value
	ChronologicalOrderReverse = "Reverse"

	// ChronologicalOrderForward is a ChronologicalOrder enum value
	ChronologicalOrderForward = "Forward"
)
View Source
const (
	// ComplianceTypeCompliant is a ComplianceType enum value
	ComplianceTypeCompliant = "COMPLIANT"

	// ComplianceTypeNonCompliant is a ComplianceType enum value
	ComplianceTypeNonCompliant = "NON_COMPLIANT"

	// ComplianceTypeNotApplicable is a ComplianceType enum value
	ComplianceTypeNotApplicable = "NOT_APPLICABLE"

	// ComplianceTypeInsufficientData is a ComplianceType enum value
	ComplianceTypeInsufficientData = "INSUFFICIENT_DATA"
)
View Source
const (
	// ConfigRuleComplianceSummaryGroupKeyAccountId is a ConfigRuleComplianceSummaryGroupKey enum value
	ConfigRuleComplianceSummaryGroupKeyAccountId = "ACCOUNT_ID"

	// ConfigRuleComplianceSummaryGroupKeyAwsRegion is a ConfigRuleComplianceSummaryGroupKey enum value
	ConfigRuleComplianceSummaryGroupKeyAwsRegion = "AWS_REGION"
)
View Source
const (
	// ConfigRuleStateActive is a ConfigRuleState enum value
	ConfigRuleStateActive = "ACTIVE"

	// ConfigRuleStateDeleting is a ConfigRuleState enum value
	ConfigRuleStateDeleting = "DELETING"

	// ConfigRuleStateDeletingResults is a ConfigRuleState enum value
	ConfigRuleStateDeletingResults = "DELETING_RESULTS"

	// ConfigRuleStateEvaluating is a ConfigRuleState enum value
	ConfigRuleStateEvaluating = "EVALUATING"
)
View Source
const (
	// ConfigurationItemStatusOk is a ConfigurationItemStatus enum value
	ConfigurationItemStatusOk = "OK"

	// ConfigurationItemStatusResourceDiscovered is a ConfigurationItemStatus enum value
	ConfigurationItemStatusResourceDiscovered = "ResourceDiscovered"

	// ConfigurationItemStatusResourceNotRecorded is a ConfigurationItemStatus enum value
	ConfigurationItemStatusResourceNotRecorded = "ResourceNotRecorded"

	// ConfigurationItemStatusResourceDeleted is a ConfigurationItemStatus enum value
	ConfigurationItemStatusResourceDeleted = "ResourceDeleted"

	// ConfigurationItemStatusResourceDeletedNotRecorded is a ConfigurationItemStatus enum value
	ConfigurationItemStatusResourceDeletedNotRecorded = "ResourceDeletedNotRecorded"
)
View Source
const (
	// ConformancePackComplianceTypeCompliant is a ConformancePackComplianceType enum value
	ConformancePackComplianceTypeCompliant = "COMPLIANT"

	// ConformancePackComplianceTypeNonCompliant is a ConformancePackComplianceType enum value
	ConformancePackComplianceTypeNonCompliant = "NON_COMPLIANT"

	// ConformancePackComplianceTypeInsufficientData is a ConformancePackComplianceType enum value
	ConformancePackComplianceTypeInsufficientData = "INSUFFICIENT_DATA"
)
View Source
const (
	// ConformancePackStateCreateInProgress is a ConformancePackState enum value
	ConformancePackStateCreateInProgress = "CREATE_IN_PROGRESS"

	// ConformancePackStateCreateComplete is a ConformancePackState enum value
	ConformancePackStateCreateComplete = "CREATE_COMPLETE"

	// ConformancePackStateCreateFailed is a ConformancePackState enum value
	ConformancePackStateCreateFailed = "CREATE_FAILED"

	// ConformancePackStateDeleteInProgress is a ConformancePackState enum value
	ConformancePackStateDeleteInProgress = "DELETE_IN_PROGRESS"

	// ConformancePackStateDeleteFailed is a ConformancePackState enum value
	ConformancePackStateDeleteFailed = "DELETE_FAILED"
)
View Source
const (
	// DeliveryStatusSuccess is a DeliveryStatus enum value
	DeliveryStatusSuccess = "Success"

	// DeliveryStatusFailure is a DeliveryStatus enum value
	DeliveryStatusFailure = "Failure"

	// DeliveryStatusNotApplicable is a DeliveryStatus enum value
	DeliveryStatusNotApplicable = "Not_Applicable"
)
View Source
const (
	// EvaluationModeDetective is a EvaluationMode enum value
	EvaluationModeDetective = "DETECTIVE"

	// EvaluationModeProactive is a EvaluationMode enum value
	EvaluationModeProactive = "PROACTIVE"
)
View Source
const (
	// MaximumExecutionFrequencyOneHour is a MaximumExecutionFrequency enum value
	MaximumExecutionFrequencyOneHour = "One_Hour"

	// MaximumExecutionFrequencyThreeHours is a MaximumExecutionFrequency enum value
	MaximumExecutionFrequencyThreeHours = "Three_Hours"

	// MaximumExecutionFrequencySixHours is a MaximumExecutionFrequency enum value
	MaximumExecutionFrequencySixHours = "Six_Hours"

	// MaximumExecutionFrequencyTwelveHours is a MaximumExecutionFrequency enum value
	MaximumExecutionFrequencyTwelveHours = "Twelve_Hours"

	// MaximumExecutionFrequencyTwentyFourHours is a MaximumExecutionFrequency enum value
	MaximumExecutionFrequencyTwentyFourHours = "TwentyFour_Hours"
)
View Source
const (
	// MemberAccountRuleStatusCreateSuccessful is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusCreateSuccessful = "CREATE_SUCCESSFUL"

	// MemberAccountRuleStatusCreateInProgress is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusCreateInProgress = "CREATE_IN_PROGRESS"

	// MemberAccountRuleStatusCreateFailed is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusCreateFailed = "CREATE_FAILED"

	// MemberAccountRuleStatusDeleteSuccessful is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusDeleteSuccessful = "DELETE_SUCCESSFUL"

	// MemberAccountRuleStatusDeleteFailed is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusDeleteFailed = "DELETE_FAILED"

	// MemberAccountRuleStatusDeleteInProgress is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusDeleteInProgress = "DELETE_IN_PROGRESS"

	// MemberAccountRuleStatusUpdateSuccessful is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusUpdateSuccessful = "UPDATE_SUCCESSFUL"

	// MemberAccountRuleStatusUpdateInProgress is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusUpdateInProgress = "UPDATE_IN_PROGRESS"

	// MemberAccountRuleStatusUpdateFailed is a MemberAccountRuleStatus enum value
	MemberAccountRuleStatusUpdateFailed = "UPDATE_FAILED"
)
View Source
const (
	// MessageTypeConfigurationItemChangeNotification is a MessageType enum value
	MessageTypeConfigurationItemChangeNotification = "ConfigurationItemChangeNotification"

	// MessageTypeConfigurationSnapshotDeliveryCompleted is a MessageType enum value
	MessageTypeConfigurationSnapshotDeliveryCompleted = "ConfigurationSnapshotDeliveryCompleted"

	// MessageTypeScheduledNotification is a MessageType enum value
	MessageTypeScheduledNotification = "ScheduledNotification"

	// MessageTypeOversizedConfigurationItemChangeNotification is a MessageType enum value
	MessageTypeOversizedConfigurationItemChangeNotification = "OversizedConfigurationItemChangeNotification"
)
View Source
const (
	// OrganizationConfigRuleTriggerTypeConfigurationItemChangeNotification is a OrganizationConfigRuleTriggerType enum value
	OrganizationConfigRuleTriggerTypeConfigurationItemChangeNotification = "ConfigurationItemChangeNotification"

	// OrganizationConfigRuleTriggerTypeOversizedConfigurationItemChangeNotification is a OrganizationConfigRuleTriggerType enum value
	OrganizationConfigRuleTriggerTypeOversizedConfigurationItemChangeNotification = "OversizedConfigurationItemChangeNotification"

	// OrganizationConfigRuleTriggerTypeScheduledNotification is a OrganizationConfigRuleTriggerType enum value
	OrganizationConfigRuleTriggerTypeScheduledNotification = "ScheduledNotification"
)
View Source
const (
	// OrganizationConfigRuleTriggerTypeNoSNConfigurationItemChangeNotification is a OrganizationConfigRuleTriggerTypeNoSN enum value
	OrganizationConfigRuleTriggerTypeNoSNConfigurationItemChangeNotification = "ConfigurationItemChangeNotification"

	// OrganizationConfigRuleTriggerTypeNoSNOversizedConfigurationItemChangeNotification is a OrganizationConfigRuleTriggerTypeNoSN enum value
	OrganizationConfigRuleTriggerTypeNoSNOversizedConfigurationItemChangeNotification = "OversizedConfigurationItemChangeNotification"
)
View Source
const (
	// OrganizationResourceDetailedStatusCreateSuccessful is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusCreateSuccessful = "CREATE_SUCCESSFUL"

	// OrganizationResourceDetailedStatusCreateInProgress is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusCreateInProgress = "CREATE_IN_PROGRESS"

	// OrganizationResourceDetailedStatusCreateFailed is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusCreateFailed = "CREATE_FAILED"

	// OrganizationResourceDetailedStatusDeleteSuccessful is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusDeleteSuccessful = "DELETE_SUCCESSFUL"

	// OrganizationResourceDetailedStatusDeleteFailed is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusDeleteFailed = "DELETE_FAILED"

	// OrganizationResourceDetailedStatusDeleteInProgress is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusDeleteInProgress = "DELETE_IN_PROGRESS"

	// OrganizationResourceDetailedStatusUpdateSuccessful is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusUpdateSuccessful = "UPDATE_SUCCESSFUL"

	// OrganizationResourceDetailedStatusUpdateInProgress is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusUpdateInProgress = "UPDATE_IN_PROGRESS"

	// OrganizationResourceDetailedStatusUpdateFailed is a OrganizationResourceDetailedStatus enum value
	OrganizationResourceDetailedStatusUpdateFailed = "UPDATE_FAILED"
)
View Source
const (
	// OrganizationResourceStatusCreateSuccessful is a OrganizationResourceStatus enum value
	OrganizationResourceStatusCreateSuccessful = "CREATE_SUCCESSFUL"

	// OrganizationResourceStatusCreateInProgress is a OrganizationResourceStatus enum value
	OrganizationResourceStatusCreateInProgress = "CREATE_IN_PROGRESS"

	// OrganizationResourceStatusCreateFailed is a OrganizationResourceStatus enum value
	OrganizationResourceStatusCreateFailed = "CREATE_FAILED"

	// OrganizationResourceStatusDeleteSuccessful is a OrganizationResourceStatus enum value
	OrganizationResourceStatusDeleteSuccessful = "DELETE_SUCCESSFUL"

	// OrganizationResourceStatusDeleteFailed is a OrganizationResourceStatus enum value
	OrganizationResourceStatusDeleteFailed = "DELETE_FAILED"

	// OrganizationResourceStatusDeleteInProgress is a OrganizationResourceStatus enum value
	OrganizationResourceStatusDeleteInProgress = "DELETE_IN_PROGRESS"

	// OrganizationResourceStatusUpdateSuccessful is a OrganizationResourceStatus enum value
	OrganizationResourceStatusUpdateSuccessful = "UPDATE_SUCCESSFUL"

	// OrganizationResourceStatusUpdateInProgress is a OrganizationResourceStatus enum value
	OrganizationResourceStatusUpdateInProgress = "UPDATE_IN_PROGRESS"

	// OrganizationResourceStatusUpdateFailed is a OrganizationResourceStatus enum value
	OrganizationResourceStatusUpdateFailed = "UPDATE_FAILED"
)
View Source
const (
	// OrganizationRuleStatusCreateSuccessful is a OrganizationRuleStatus enum value
	OrganizationRuleStatusCreateSuccessful = "CREATE_SUCCESSFUL"

	// OrganizationRuleStatusCreateInProgress is a OrganizationRuleStatus enum value
	OrganizationRuleStatusCreateInProgress = "CREATE_IN_PROGRESS"

	// OrganizationRuleStatusCreateFailed is a OrganizationRuleStatus enum value
	OrganizationRuleStatusCreateFailed = "CREATE_FAILED"

	// OrganizationRuleStatusDeleteSuccessful is a OrganizationRuleStatus enum value
	OrganizationRuleStatusDeleteSuccessful = "DELETE_SUCCESSFUL"

	// OrganizationRuleStatusDeleteFailed is a OrganizationRuleStatus enum value
	OrganizationRuleStatusDeleteFailed = "DELETE_FAILED"

	// OrganizationRuleStatusDeleteInProgress is a OrganizationRuleStatus enum value
	OrganizationRuleStatusDeleteInProgress = "DELETE_IN_PROGRESS"

	// OrganizationRuleStatusUpdateSuccessful is a OrganizationRuleStatus enum value
	OrganizationRuleStatusUpdateSuccessful = "UPDATE_SUCCESSFUL"

	// OrganizationRuleStatusUpdateInProgress is a OrganizationRuleStatus enum value
	OrganizationRuleStatusUpdateInProgress = "UPDATE_IN_PROGRESS"

	// OrganizationRuleStatusUpdateFailed is a OrganizationRuleStatus enum value
	OrganizationRuleStatusUpdateFailed = "UPDATE_FAILED"
)
View Source
const (
	// OwnerCustomLambda is a Owner enum value
	OwnerCustomLambda = "CUSTOM_LAMBDA"

	// OwnerAws is a Owner enum value
	OwnerAws = "AWS"

	// OwnerCustomPolicy is a Owner enum value
	OwnerCustomPolicy = "CUSTOM_POLICY"
)
View Source
const (
	// RecorderStatusPending is a RecorderStatus enum value
	RecorderStatusPending = "Pending"

	// RecorderStatusSuccess is a RecorderStatus enum value
	RecorderStatusSuccess = "Success"

	// RecorderStatusFailure is a RecorderStatus enum value
	RecorderStatusFailure = "Failure"
)
View Source
const (
	// RecordingFrequencyContinuous is a RecordingFrequency enum value
	RecordingFrequencyContinuous = "CONTINUOUS"

	// RecordingFrequencyDaily is a RecordingFrequency enum value
	RecordingFrequencyDaily = "DAILY"
)
View Source
const (
	// RecordingStrategyTypeAllSupportedResourceTypes is a RecordingStrategyType enum value
	RecordingStrategyTypeAllSupportedResourceTypes = "ALL_SUPPORTED_RESOURCE_TYPES"

	// RecordingStrategyTypeInclusionByResourceTypes is a RecordingStrategyType enum value
	RecordingStrategyTypeInclusionByResourceTypes = "INCLUSION_BY_RESOURCE_TYPES"

	// RecordingStrategyTypeExclusionByResourceTypes is a RecordingStrategyType enum value
	RecordingStrategyTypeExclusionByResourceTypes = "EXCLUSION_BY_RESOURCE_TYPES"
)
View Source
const (
	// RemediationExecutionStateQueued is a RemediationExecutionState enum value
	RemediationExecutionStateQueued = "QUEUED"

	// RemediationExecutionStateInProgress is a RemediationExecutionState enum value
	RemediationExecutionStateInProgress = "IN_PROGRESS"

	// RemediationExecutionStateSucceeded is a RemediationExecutionState enum value
	RemediationExecutionStateSucceeded = "SUCCEEDED"

	// RemediationExecutionStateFailed is a RemediationExecutionState enum value
	RemediationExecutionStateFailed = "FAILED"
)
View Source
const (
	// RemediationExecutionStepStateSucceeded is a RemediationExecutionStepState enum value
	RemediationExecutionStepStateSucceeded = "SUCCEEDED"

	// RemediationExecutionStepStatePending is a RemediationExecutionStepState enum value
	RemediationExecutionStepStatePending = "PENDING"

	// RemediationExecutionStepStateFailed is a RemediationExecutionStepState enum value
	RemediationExecutionStepStateFailed = "FAILED"
)
View Source
const (
	// ResourceCountGroupKeyResourceType is a ResourceCountGroupKey enum value
	ResourceCountGroupKeyResourceType = "RESOURCE_TYPE"

	// ResourceCountGroupKeyAccountId is a ResourceCountGroupKey enum value
	ResourceCountGroupKeyAccountId = "ACCOUNT_ID"

	// ResourceCountGroupKeyAwsRegion is a ResourceCountGroupKey enum value
	ResourceCountGroupKeyAwsRegion = "AWS_REGION"
)
View Source
const (
	// ResourceEvaluationStatusInProgress is a ResourceEvaluationStatus enum value
	ResourceEvaluationStatusInProgress = "IN_PROGRESS"

	// ResourceEvaluationStatusFailed is a ResourceEvaluationStatus enum value
	ResourceEvaluationStatusFailed = "FAILED"

	// ResourceEvaluationStatusSucceeded is a ResourceEvaluationStatus enum value
	ResourceEvaluationStatusSucceeded = "SUCCEEDED"
)
View Source
const (
	// ResourceTypeAwsEc2CustomerGateway is a ResourceType enum value
	ResourceTypeAwsEc2CustomerGateway = "AWS::EC2::CustomerGateway"

	// ResourceTypeAwsEc2Eip is a ResourceType enum value
	ResourceTypeAwsEc2Eip = "AWS::EC2::EIP"

	// ResourceTypeAwsEc2Host is a ResourceType enum value
	ResourceTypeAwsEc2Host = "AWS::EC2::Host"

	// ResourceTypeAwsEc2Instance is a ResourceType enum value
	ResourceTypeAwsEc2Instance = "AWS::EC2::Instance"

	// ResourceTypeAwsEc2InternetGateway is a ResourceType enum value
	ResourceTypeAwsEc2InternetGateway = "AWS::EC2::InternetGateway"

	// ResourceTypeAwsEc2NetworkAcl is a ResourceType enum value
	ResourceTypeAwsEc2NetworkAcl = "AWS::EC2::NetworkAcl"

	// ResourceTypeAwsEc2NetworkInterface is a ResourceType enum value
	ResourceTypeAwsEc2NetworkInterface = "AWS::EC2::NetworkInterface"

	// ResourceTypeAwsEc2RouteTable is a ResourceType enum value
	ResourceTypeAwsEc2RouteTable = "AWS::EC2::RouteTable"

	// ResourceTypeAwsEc2SecurityGroup is a ResourceType enum value
	ResourceTypeAwsEc2SecurityGroup = "AWS::EC2::SecurityGroup"

	// ResourceTypeAwsEc2Subnet is a ResourceType enum value
	ResourceTypeAwsEc2Subnet = "AWS::EC2::Subnet"

	// ResourceTypeAwsCloudTrailTrail is a ResourceType enum value
	ResourceTypeAwsCloudTrailTrail = "AWS::CloudTrail::Trail"

	// ResourceTypeAwsEc2Volume is a ResourceType enum value
	ResourceTypeAwsEc2Volume = "AWS::EC2::Volume"

	// ResourceTypeAwsEc2Vpc is a ResourceType enum value
	ResourceTypeAwsEc2Vpc = "AWS::EC2::VPC"

	// ResourceTypeAwsEc2Vpnconnection is a ResourceType enum value
	ResourceTypeAwsEc2Vpnconnection = "AWS::EC2::VPNConnection"

	// ResourceTypeAwsEc2Vpngateway is a ResourceType enum value
	ResourceTypeAwsEc2Vpngateway = "AWS::EC2::VPNGateway"

	// ResourceTypeAwsEc2RegisteredHainstance is a ResourceType enum value
	ResourceTypeAwsEc2RegisteredHainstance = "AWS::EC2::RegisteredHAInstance"

	// ResourceTypeAwsEc2NatGateway is a ResourceType enum value
	ResourceTypeAwsEc2NatGateway = "AWS::EC2::NatGateway"

	// ResourceTypeAwsEc2EgressOnlyInternetGateway is a ResourceType enum value
	ResourceTypeAwsEc2EgressOnlyInternetGateway = "AWS::EC2::EgressOnlyInternetGateway"

	// ResourceTypeAwsEc2Vpcendpoint is a ResourceType enum value
	ResourceTypeAwsEc2Vpcendpoint = "AWS::EC2::VPCEndpoint"

	// ResourceTypeAwsEc2VpcendpointService is a ResourceType enum value
	ResourceTypeAwsEc2VpcendpointService = "AWS::EC2::VPCEndpointService"

	// ResourceTypeAwsEc2FlowLog is a ResourceType enum value
	ResourceTypeAwsEc2FlowLog = "AWS::EC2::FlowLog"

	// ResourceTypeAwsEc2VpcpeeringConnection is a ResourceType enum value
	ResourceTypeAwsEc2VpcpeeringConnection = "AWS::EC2::VPCPeeringConnection"

	// ResourceTypeAwsElasticsearchDomain is a ResourceType enum value
	ResourceTypeAwsElasticsearchDomain = "AWS::Elasticsearch::Domain"

	// ResourceTypeAwsIamGroup is a ResourceType enum value
	ResourceTypeAwsIamGroup = "AWS::IAM::Group"

	// ResourceTypeAwsIamPolicy is a ResourceType enum value
	ResourceTypeAwsIamPolicy = "AWS::IAM::Policy"

	// ResourceTypeAwsIamRole is a ResourceType enum value
	ResourceTypeAwsIamRole = "AWS::IAM::Role"

	// ResourceTypeAwsIamUser is a ResourceType enum value
	ResourceTypeAwsIamUser = "AWS::IAM::User"

	// ResourceTypeAwsElasticLoadBalancingV2LoadBalancer is a ResourceType enum value
	ResourceTypeAwsElasticLoadBalancingV2LoadBalancer = "AWS::ElasticLoadBalancingV2::LoadBalancer"

	// ResourceTypeAwsAcmCertificate is a ResourceType enum value
	ResourceTypeAwsAcmCertificate = "AWS::ACM::Certificate"

	// ResourceTypeAwsRdsDbinstance is a ResourceType enum value
	ResourceTypeAwsRdsDbinstance = "AWS::RDS::DBInstance"

	// ResourceTypeAwsRdsDbsubnetGroup is a ResourceType enum value
	ResourceTypeAwsRdsDbsubnetGroup = "AWS::RDS::DBSubnetGroup"

	// ResourceTypeAwsRdsDbsecurityGroup is a ResourceType enum value
	ResourceTypeAwsRdsDbsecurityGroup = "AWS::RDS::DBSecurityGroup"

	// ResourceTypeAwsRdsDbsnapshot is a ResourceType enum value
	ResourceTypeAwsRdsDbsnapshot = "AWS::RDS::DBSnapshot"

	// ResourceTypeAwsRdsDbcluster is a ResourceType enum value
	ResourceTypeAwsRdsDbcluster = "AWS::RDS::DBCluster"

	// ResourceTypeAwsRdsDbclusterSnapshot is a ResourceType enum value
	ResourceTypeAwsRdsDbclusterSnapshot = "AWS::RDS::DBClusterSnapshot"

	// ResourceTypeAwsRdsEventSubscription is a ResourceType enum value
	ResourceTypeAwsRdsEventSubscription = "AWS::RDS::EventSubscription"

	// ResourceTypeAwsS3Bucket is a ResourceType enum value
	ResourceTypeAwsS3Bucket = "AWS::S3::Bucket"

	// ResourceTypeAwsS3AccountPublicAccessBlock is a ResourceType enum value
	ResourceTypeAwsS3AccountPublicAccessBlock = "AWS::S3::AccountPublicAccessBlock"

	// ResourceTypeAwsRedshiftCluster is a ResourceType enum value
	ResourceTypeAwsRedshiftCluster = "AWS::Redshift::Cluster"

	// ResourceTypeAwsRedshiftClusterSnapshot is a ResourceType enum value
	ResourceTypeAwsRedshiftClusterSnapshot = "AWS::Redshift::ClusterSnapshot"

	// ResourceTypeAwsRedshiftClusterParameterGroup is a ResourceType enum value
	ResourceTypeAwsRedshiftClusterParameterGroup = "AWS::Redshift::ClusterParameterGroup"

	// ResourceTypeAwsRedshiftClusterSecurityGroup is a ResourceType enum value
	ResourceTypeAwsRedshiftClusterSecurityGroup = "AWS::Redshift::ClusterSecurityGroup"

	// ResourceTypeAwsRedshiftClusterSubnetGroup is a ResourceType enum value
	ResourceTypeAwsRedshiftClusterSubnetGroup = "AWS::Redshift::ClusterSubnetGroup"

	// ResourceTypeAwsRedshiftEventSubscription is a ResourceType enum value
	ResourceTypeAwsRedshiftEventSubscription = "AWS::Redshift::EventSubscription"

	// ResourceTypeAwsSsmManagedInstanceInventory is a ResourceType enum value
	ResourceTypeAwsSsmManagedInstanceInventory = "AWS::SSM::ManagedInstanceInventory"

	// ResourceTypeAwsCloudWatchAlarm is a ResourceType enum value
	ResourceTypeAwsCloudWatchAlarm = "AWS::CloudWatch::Alarm"

	// ResourceTypeAwsCloudFormationStack is a ResourceType enum value
	ResourceTypeAwsCloudFormationStack = "AWS::CloudFormation::Stack"

	// ResourceTypeAwsElasticLoadBalancingLoadBalancer is a ResourceType enum value
	ResourceTypeAwsElasticLoadBalancingLoadBalancer = "AWS::ElasticLoadBalancing::LoadBalancer"

	// ResourceTypeAwsAutoScalingAutoScalingGroup is a ResourceType enum value
	ResourceTypeAwsAutoScalingAutoScalingGroup = "AWS::AutoScaling::AutoScalingGroup"

	// ResourceTypeAwsAutoScalingLaunchConfiguration is a ResourceType enum value
	ResourceTypeAwsAutoScalingLaunchConfiguration = "AWS::AutoScaling::LaunchConfiguration"

	// ResourceTypeAwsAutoScalingScalingPolicy is a ResourceType enum value
	ResourceTypeAwsAutoScalingScalingPolicy = "AWS::AutoScaling::ScalingPolicy"

	// ResourceTypeAwsAutoScalingScheduledAction is a ResourceType enum value
	ResourceTypeAwsAutoScalingScheduledAction = "AWS::AutoScaling::ScheduledAction"

	// ResourceTypeAwsDynamoDbTable is a ResourceType enum value
	ResourceTypeAwsDynamoDbTable = "AWS::DynamoDB::Table"

	// ResourceTypeAwsCodeBuildProject is a ResourceType enum value
	ResourceTypeAwsCodeBuildProject = "AWS::CodeBuild::Project"

	// ResourceTypeAwsWafRateBasedRule is a ResourceType enum value
	ResourceTypeAwsWafRateBasedRule = "AWS::WAF::RateBasedRule"

	// ResourceTypeAwsWafRule is a ResourceType enum value
	ResourceTypeAwsWafRule = "AWS::WAF::Rule"

	// ResourceTypeAwsWafRuleGroup is a ResourceType enum value
	ResourceTypeAwsWafRuleGroup = "AWS::WAF::RuleGroup"

	// ResourceTypeAwsWafWebAcl is a ResourceType enum value
	ResourceTypeAwsWafWebAcl = "AWS::WAF::WebACL"

	// ResourceTypeAwsWafregionalRateBasedRule is a ResourceType enum value
	ResourceTypeAwsWafregionalRateBasedRule = "AWS::WAFRegional::RateBasedRule"

	// ResourceTypeAwsWafregionalRule is a ResourceType enum value
	ResourceTypeAwsWafregionalRule = "AWS::WAFRegional::Rule"

	// ResourceTypeAwsWafregionalRuleGroup is a ResourceType enum value
	ResourceTypeAwsWafregionalRuleGroup = "AWS::WAFRegional::RuleGroup"

	// ResourceTypeAwsWafregionalWebAcl is a ResourceType enum value
	ResourceTypeAwsWafregionalWebAcl = "AWS::WAFRegional::WebACL"

	// ResourceTypeAwsCloudFrontDistribution is a ResourceType enum value
	ResourceTypeAwsCloudFrontDistribution = "AWS::CloudFront::Distribution"

	// ResourceTypeAwsCloudFrontStreamingDistribution is a ResourceType enum value
	ResourceTypeAwsCloudFrontStreamingDistribution = "AWS::CloudFront::StreamingDistribution"

	// ResourceTypeAwsLambdaFunction is a ResourceType enum value
	ResourceTypeAwsLambdaFunction = "AWS::Lambda::Function"

	// ResourceTypeAwsNetworkFirewallFirewall is a ResourceType enum value
	ResourceTypeAwsNetworkFirewallFirewall = "AWS::NetworkFirewall::Firewall"

	// ResourceTypeAwsNetworkFirewallFirewallPolicy is a ResourceType enum value
	ResourceTypeAwsNetworkFirewallFirewallPolicy = "AWS::NetworkFirewall::FirewallPolicy"

	// ResourceTypeAwsNetworkFirewallRuleGroup is a ResourceType enum value
	ResourceTypeAwsNetworkFirewallRuleGroup = "AWS::NetworkFirewall::RuleGroup"

	// ResourceTypeAwsElasticBeanstalkApplication is a ResourceType enum value
	ResourceTypeAwsElasticBeanstalkApplication = "AWS::ElasticBeanstalk::Application"

	// ResourceTypeAwsElasticBeanstalkApplicationVersion is a ResourceType enum value
	ResourceTypeAwsElasticBeanstalkApplicationVersion = "AWS::ElasticBeanstalk::ApplicationVersion"

	// ResourceTypeAwsElasticBeanstalkEnvironment is a ResourceType enum value
	ResourceTypeAwsElasticBeanstalkEnvironment = "AWS::ElasticBeanstalk::Environment"

	// ResourceTypeAwsWafv2WebAcl is a ResourceType enum value
	ResourceTypeAwsWafv2WebAcl = "AWS::WAFv2::WebACL"

	// ResourceTypeAwsWafv2RuleGroup is a ResourceType enum value
	ResourceTypeAwsWafv2RuleGroup = "AWS::WAFv2::RuleGroup"

	// ResourceTypeAwsWafv2Ipset is a ResourceType enum value
	ResourceTypeAwsWafv2Ipset = "AWS::WAFv2::IPSet"

	// ResourceTypeAwsWafv2RegexPatternSet is a ResourceType enum value
	ResourceTypeAwsWafv2RegexPatternSet = "AWS::WAFv2::RegexPatternSet"

	// ResourceTypeAwsWafv2ManagedRuleSet is a ResourceType enum value
	ResourceTypeAwsWafv2ManagedRuleSet = "AWS::WAFv2::ManagedRuleSet"

	// ResourceTypeAwsXrayEncryptionConfig is a ResourceType enum value
	ResourceTypeAwsXrayEncryptionConfig = "AWS::XRay::EncryptionConfig"

	// ResourceTypeAwsSsmAssociationCompliance is a ResourceType enum value
	ResourceTypeAwsSsmAssociationCompliance = "AWS::SSM::AssociationCompliance"

	// ResourceTypeAwsSsmPatchCompliance is a ResourceType enum value
	ResourceTypeAwsSsmPatchCompliance = "AWS::SSM::PatchCompliance"

	// ResourceTypeAwsShieldProtection is a ResourceType enum value
	ResourceTypeAwsShieldProtection = "AWS::Shield::Protection"

	// ResourceTypeAwsShieldRegionalProtection is a ResourceType enum value
	ResourceTypeAwsShieldRegionalProtection = "AWS::ShieldRegional::Protection"

	// ResourceTypeAwsConfigConformancePackCompliance is a ResourceType enum value
	ResourceTypeAwsConfigConformancePackCompliance = "AWS::Config::ConformancePackCompliance"

	// ResourceTypeAwsConfigResourceCompliance is a ResourceType enum value
	ResourceTypeAwsConfigResourceCompliance = "AWS::Config::ResourceCompliance"

	// ResourceTypeAwsApiGatewayStage is a ResourceType enum value
	ResourceTypeAwsApiGatewayStage = "AWS::ApiGateway::Stage"

	// ResourceTypeAwsApiGatewayRestApi is a ResourceType enum value
	ResourceTypeAwsApiGatewayRestApi = "AWS::ApiGateway::RestApi"

	// ResourceTypeAwsApiGatewayV2Stage is a ResourceType enum value
	ResourceTypeAwsApiGatewayV2Stage = "AWS::ApiGatewayV2::Stage"

	// ResourceTypeAwsApiGatewayV2Api is a ResourceType enum value
	ResourceTypeAwsApiGatewayV2Api = "AWS::ApiGatewayV2::Api"

	// ResourceTypeAwsCodePipelinePipeline is a ResourceType enum value
	ResourceTypeAwsCodePipelinePipeline = "AWS::CodePipeline::Pipeline"

	// ResourceTypeAwsServiceCatalogCloudFormationProvisionedProduct is a ResourceType enum value
	ResourceTypeAwsServiceCatalogCloudFormationProvisionedProduct = "AWS::ServiceCatalog::CloudFormationProvisionedProduct"

	// ResourceTypeAwsServiceCatalogCloudFormationProduct is a ResourceType enum value
	ResourceTypeAwsServiceCatalogCloudFormationProduct = "AWS::ServiceCatalog::CloudFormationProduct"

	// ResourceTypeAwsServiceCatalogPortfolio is a ResourceType enum value
	ResourceTypeAwsServiceCatalogPortfolio = "AWS::ServiceCatalog::Portfolio"

	// ResourceTypeAwsSqsQueue is a ResourceType enum value
	ResourceTypeAwsSqsQueue = "AWS::SQS::Queue"

	// ResourceTypeAwsKmsKey is a ResourceType enum value
	ResourceTypeAwsKmsKey = "AWS::KMS::Key"

	// ResourceTypeAwsQldbLedger is a ResourceType enum value
	ResourceTypeAwsQldbLedger = "AWS::QLDB::Ledger"

	// ResourceTypeAwsSecretsManagerSecret is a ResourceType enum value
	ResourceTypeAwsSecretsManagerSecret = "AWS::SecretsManager::Secret"

	// ResourceTypeAwsSnsTopic is a ResourceType enum value
	ResourceTypeAwsSnsTopic = "AWS::SNS::Topic"

	// ResourceTypeAwsSsmFileData is a ResourceType enum value
	ResourceTypeAwsSsmFileData = "AWS::SSM::FileData"

	// ResourceTypeAwsBackupBackupPlan is a ResourceType enum value
	ResourceTypeAwsBackupBackupPlan = "AWS::Backup::BackupPlan"

	// ResourceTypeAwsBackupBackupSelection is a ResourceType enum value
	ResourceTypeAwsBackupBackupSelection = "AWS::Backup::BackupSelection"

	// ResourceTypeAwsBackupBackupVault is a ResourceType enum value
	ResourceTypeAwsBackupBackupVault = "AWS::Backup::BackupVault"

	// ResourceTypeAwsBackupRecoveryPoint is a ResourceType enum value
	ResourceTypeAwsBackupRecoveryPoint = "AWS::Backup::RecoveryPoint"

	// ResourceTypeAwsEcrRepository is a ResourceType enum value
	ResourceTypeAwsEcrRepository = "AWS::ECR::Repository"

	// ResourceTypeAwsEcsCluster is a ResourceType enum value
	ResourceTypeAwsEcsCluster = "AWS::ECS::Cluster"

	// ResourceTypeAwsEcsService is a ResourceType enum value
	ResourceTypeAwsEcsService = "AWS::ECS::Service"

	// ResourceTypeAwsEcsTaskDefinition is a ResourceType enum value
	ResourceTypeAwsEcsTaskDefinition = "AWS::ECS::TaskDefinition"

	// ResourceTypeAwsEfsAccessPoint is a ResourceType enum value
	ResourceTypeAwsEfsAccessPoint = "AWS::EFS::AccessPoint"

	// ResourceTypeAwsEfsFileSystem is a ResourceType enum value
	ResourceTypeAwsEfsFileSystem = "AWS::EFS::FileSystem"

	// ResourceTypeAwsEksCluster is a ResourceType enum value
	ResourceTypeAwsEksCluster = "AWS::EKS::Cluster"

	// ResourceTypeAwsOpenSearchDomain is a ResourceType enum value
	ResourceTypeAwsOpenSearchDomain = "AWS::OpenSearch::Domain"

	// ResourceTypeAwsEc2TransitGateway is a ResourceType enum value
	ResourceTypeAwsEc2TransitGateway = "AWS::EC2::TransitGateway"

	// ResourceTypeAwsKinesisStream is a ResourceType enum value
	ResourceTypeAwsKinesisStream = "AWS::Kinesis::Stream"

	// ResourceTypeAwsKinesisStreamConsumer is a ResourceType enum value
	ResourceTypeAwsKinesisStreamConsumer = "AWS::Kinesis::StreamConsumer"

	// ResourceTypeAwsCodeDeployApplication is a ResourceType enum value
	ResourceTypeAwsCodeDeployApplication = "AWS::CodeDeploy::Application"

	// ResourceTypeAwsCodeDeployDeploymentConfig is a ResourceType enum value
	ResourceTypeAwsCodeDeployDeploymentConfig = "AWS::CodeDeploy::DeploymentConfig"

	// ResourceTypeAwsCodeDeployDeploymentGroup is a ResourceType enum value
	ResourceTypeAwsCodeDeployDeploymentGroup = "AWS::CodeDeploy::DeploymentGroup"

	// ResourceTypeAwsEc2LaunchTemplate is a ResourceType enum value
	ResourceTypeAwsEc2LaunchTemplate = "AWS::EC2::LaunchTemplate"

	// ResourceTypeAwsEcrPublicRepository is a ResourceType enum value
	ResourceTypeAwsEcrPublicRepository = "AWS::ECR::PublicRepository"

	// ResourceTypeAwsGuardDutyDetector is a ResourceType enum value
	ResourceTypeAwsGuardDutyDetector = "AWS::GuardDuty::Detector"

	// ResourceTypeAwsEmrSecurityConfiguration is a ResourceType enum value
	ResourceTypeAwsEmrSecurityConfiguration = "AWS::EMR::SecurityConfiguration"

	// ResourceTypeAwsSageMakerCodeRepository is a ResourceType enum value
	ResourceTypeAwsSageMakerCodeRepository = "AWS::SageMaker::CodeRepository"

	// ResourceTypeAwsRoute53resolverResolverEndpoint is a ResourceType enum value
	ResourceTypeAwsRoute53resolverResolverEndpoint = "AWS::Route53Resolver::ResolverEndpoint"

	// ResourceTypeAwsRoute53resolverResolverRule is a ResourceType enum value
	ResourceTypeAwsRoute53resolverResolverRule = "AWS::Route53Resolver::ResolverRule"

	// ResourceTypeAwsRoute53resolverResolverRuleAssociation is a ResourceType enum value
	ResourceTypeAwsRoute53resolverResolverRuleAssociation = "AWS::Route53Resolver::ResolverRuleAssociation"

	// ResourceTypeAwsDmsReplicationSubnetGroup is a ResourceType enum value
	ResourceTypeAwsDmsReplicationSubnetGroup = "AWS::DMS::ReplicationSubnetGroup"

	// ResourceTypeAwsDmsEventSubscription is a ResourceType enum value
	ResourceTypeAwsDmsEventSubscription = "AWS::DMS::EventSubscription"

	// ResourceTypeAwsMskCluster is a ResourceType enum value
	ResourceTypeAwsMskCluster = "AWS::MSK::Cluster"

	// ResourceTypeAwsStepFunctionsActivity is a ResourceType enum value
	ResourceTypeAwsStepFunctionsActivity = "AWS::StepFunctions::Activity"

	// ResourceTypeAwsWorkSpacesWorkspace is a ResourceType enum value
	ResourceTypeAwsWorkSpacesWorkspace = "AWS::WorkSpaces::Workspace"

	// ResourceTypeAwsWorkSpacesConnectionAlias is a ResourceType enum value
	ResourceTypeAwsWorkSpacesConnectionAlias = "AWS::WorkSpaces::ConnectionAlias"

	// ResourceTypeAwsSageMakerModel is a ResourceType enum value
	ResourceTypeAwsSageMakerModel = "AWS::SageMaker::Model"

	// ResourceTypeAwsElasticLoadBalancingV2Listener is a ResourceType enum value
	ResourceTypeAwsElasticLoadBalancingV2Listener = "AWS::ElasticLoadBalancingV2::Listener"

	// ResourceTypeAwsStepFunctionsStateMachine is a ResourceType enum value
	ResourceTypeAwsStepFunctionsStateMachine = "AWS::StepFunctions::StateMachine"

	// ResourceTypeAwsBatchJobQueue is a ResourceType enum value
	ResourceTypeAwsBatchJobQueue = "AWS::Batch::JobQueue"

	// ResourceTypeAwsBatchComputeEnvironment is a ResourceType enum value
	ResourceTypeAwsBatchComputeEnvironment = "AWS::Batch::ComputeEnvironment"

	// ResourceTypeAwsAccessAnalyzerAnalyzer is a ResourceType enum value
	ResourceTypeAwsAccessAnalyzerAnalyzer = "AWS::AccessAnalyzer::Analyzer"

	// ResourceTypeAwsAthenaWorkGroup is a ResourceType enum value
	ResourceTypeAwsAthenaWorkGroup = "AWS::Athena::WorkGroup"

	// ResourceTypeAwsAthenaDataCatalog is a ResourceType enum value
	ResourceTypeAwsAthenaDataCatalog = "AWS::Athena::DataCatalog"

	// ResourceTypeAwsDetectiveGraph is a ResourceType enum value
	ResourceTypeAwsDetectiveGraph = "AWS::Detective::Graph"

	// ResourceTypeAwsGlobalAcceleratorAccelerator is a ResourceType enum value
	ResourceTypeAwsGlobalAcceleratorAccelerator = "AWS::GlobalAccelerator::Accelerator"

	// ResourceTypeAwsGlobalAcceleratorEndpointGroup is a ResourceType enum value
	ResourceTypeAwsGlobalAcceleratorEndpointGroup = "AWS::GlobalAccelerator::EndpointGroup"

	// ResourceTypeAwsGlobalAcceleratorListener is a ResourceType enum value
	ResourceTypeAwsGlobalAcceleratorListener = "AWS::GlobalAccelerator::Listener"

	// ResourceTypeAwsEc2TransitGatewayAttachment is a ResourceType enum value
	ResourceTypeAwsEc2TransitGatewayAttachment = "AWS::EC2::TransitGatewayAttachment"

	// ResourceTypeAwsEc2TransitGatewayRouteTable is a ResourceType enum value
	ResourceTypeAwsEc2TransitGatewayRouteTable = "AWS::EC2::TransitGatewayRouteTable"

	// ResourceTypeAwsDmsCertificate is a ResourceType enum value
	ResourceTypeAwsDmsCertificate = "AWS::DMS::Certificate"

	// ResourceTypeAwsAppConfigApplication is a ResourceType enum value
	ResourceTypeAwsAppConfigApplication = "AWS::AppConfig::Application"

	// ResourceTypeAwsAppSyncGraphQlapi is a ResourceType enum value
	ResourceTypeAwsAppSyncGraphQlapi = "AWS::AppSync::GraphQLApi"

	// ResourceTypeAwsDataSyncLocationSmb is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationSmb = "AWS::DataSync::LocationSMB"

	// ResourceTypeAwsDataSyncLocationFsxLustre is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationFsxLustre = "AWS::DataSync::LocationFSxLustre"

	// ResourceTypeAwsDataSyncLocationS3 is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationS3 = "AWS::DataSync::LocationS3"

	// ResourceTypeAwsDataSyncLocationEfs is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationEfs = "AWS::DataSync::LocationEFS"

	// ResourceTypeAwsDataSyncTask is a ResourceType enum value
	ResourceTypeAwsDataSyncTask = "AWS::DataSync::Task"

	// ResourceTypeAwsDataSyncLocationNfs is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationNfs = "AWS::DataSync::LocationNFS"

	// ResourceTypeAwsEc2NetworkInsightsAccessScopeAnalysis is a ResourceType enum value
	ResourceTypeAwsEc2NetworkInsightsAccessScopeAnalysis = "AWS::EC2::NetworkInsightsAccessScopeAnalysis"

	// ResourceTypeAwsEksFargateProfile is a ResourceType enum value
	ResourceTypeAwsEksFargateProfile = "AWS::EKS::FargateProfile"

	// ResourceTypeAwsGlueJob is a ResourceType enum value
	ResourceTypeAwsGlueJob = "AWS::Glue::Job"

	// ResourceTypeAwsGuardDutyThreatIntelSet is a ResourceType enum value
	ResourceTypeAwsGuardDutyThreatIntelSet = "AWS::GuardDuty::ThreatIntelSet"

	// ResourceTypeAwsGuardDutyIpset is a ResourceType enum value
	ResourceTypeAwsGuardDutyIpset = "AWS::GuardDuty::IPSet"

	// ResourceTypeAwsSageMakerWorkteam is a ResourceType enum value
	ResourceTypeAwsSageMakerWorkteam = "AWS::SageMaker::Workteam"

	// ResourceTypeAwsSageMakerNotebookInstanceLifecycleConfig is a ResourceType enum value
	ResourceTypeAwsSageMakerNotebookInstanceLifecycleConfig = "AWS::SageMaker::NotebookInstanceLifecycleConfig"

	// ResourceTypeAwsServiceDiscoveryService is a ResourceType enum value
	ResourceTypeAwsServiceDiscoveryService = "AWS::ServiceDiscovery::Service"

	// ResourceTypeAwsServiceDiscoveryPublicDnsNamespace is a ResourceType enum value
	ResourceTypeAwsServiceDiscoveryPublicDnsNamespace = "AWS::ServiceDiscovery::PublicDnsNamespace"

	// ResourceTypeAwsSesContactList is a ResourceType enum value
	ResourceTypeAwsSesContactList = "AWS::SES::ContactList"

	// ResourceTypeAwsSesConfigurationSet is a ResourceType enum value
	ResourceTypeAwsSesConfigurationSet = "AWS::SES::ConfigurationSet"

	// ResourceTypeAwsRoute53HostedZone is a ResourceType enum value
	ResourceTypeAwsRoute53HostedZone = "AWS::Route53::HostedZone"

	// ResourceTypeAwsIoTeventsInput is a ResourceType enum value
	ResourceTypeAwsIoTeventsInput = "AWS::IoTEvents::Input"

	// ResourceTypeAwsIoTeventsDetectorModel is a ResourceType enum value
	ResourceTypeAwsIoTeventsDetectorModel = "AWS::IoTEvents::DetectorModel"

	// ResourceTypeAwsIoTeventsAlarmModel is a ResourceType enum value
	ResourceTypeAwsIoTeventsAlarmModel = "AWS::IoTEvents::AlarmModel"

	// ResourceTypeAwsServiceDiscoveryHttpNamespace is a ResourceType enum value
	ResourceTypeAwsServiceDiscoveryHttpNamespace = "AWS::ServiceDiscovery::HttpNamespace"

	// ResourceTypeAwsEventsEventBus is a ResourceType enum value
	ResourceTypeAwsEventsEventBus = "AWS::Events::EventBus"

	// ResourceTypeAwsImageBuilderContainerRecipe is a ResourceType enum value
	ResourceTypeAwsImageBuilderContainerRecipe = "AWS::ImageBuilder::ContainerRecipe"

	// ResourceTypeAwsImageBuilderDistributionConfiguration is a ResourceType enum value
	ResourceTypeAwsImageBuilderDistributionConfiguration = "AWS::ImageBuilder::DistributionConfiguration"

	// ResourceTypeAwsImageBuilderInfrastructureConfiguration is a ResourceType enum value
	ResourceTypeAwsImageBuilderInfrastructureConfiguration = "AWS::ImageBuilder::InfrastructureConfiguration"

	// ResourceTypeAwsDataSyncLocationObjectStorage is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationObjectStorage = "AWS::DataSync::LocationObjectStorage"

	// ResourceTypeAwsDataSyncLocationHdfs is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationHdfs = "AWS::DataSync::LocationHDFS"

	// ResourceTypeAwsGlueClassifier is a ResourceType enum value
	ResourceTypeAwsGlueClassifier = "AWS::Glue::Classifier"

	// ResourceTypeAwsRoute53recoveryReadinessCell is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryReadinessCell = "AWS::Route53RecoveryReadiness::Cell"

	// ResourceTypeAwsRoute53recoveryReadinessReadinessCheck is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryReadinessReadinessCheck = "AWS::Route53RecoveryReadiness::ReadinessCheck"

	// ResourceTypeAwsEcrRegistryPolicy is a ResourceType enum value
	ResourceTypeAwsEcrRegistryPolicy = "AWS::ECR::RegistryPolicy"

	// ResourceTypeAwsBackupReportPlan is a ResourceType enum value
	ResourceTypeAwsBackupReportPlan = "AWS::Backup::ReportPlan"

	// ResourceTypeAwsLightsailCertificate is a ResourceType enum value
	ResourceTypeAwsLightsailCertificate = "AWS::Lightsail::Certificate"

	// ResourceTypeAwsRumAppMonitor is a ResourceType enum value
	ResourceTypeAwsRumAppMonitor = "AWS::RUM::AppMonitor"

	// ResourceTypeAwsEventsEndpoint is a ResourceType enum value
	ResourceTypeAwsEventsEndpoint = "AWS::Events::Endpoint"

	// ResourceTypeAwsSesReceiptRuleSet is a ResourceType enum value
	ResourceTypeAwsSesReceiptRuleSet = "AWS::SES::ReceiptRuleSet"

	// ResourceTypeAwsEventsArchive is a ResourceType enum value
	ResourceTypeAwsEventsArchive = "AWS::Events::Archive"

	// ResourceTypeAwsEventsApiDestination is a ResourceType enum value
	ResourceTypeAwsEventsApiDestination = "AWS::Events::ApiDestination"

	// ResourceTypeAwsLightsailDisk is a ResourceType enum value
	ResourceTypeAwsLightsailDisk = "AWS::Lightsail::Disk"

	// ResourceTypeAwsFisExperimentTemplate is a ResourceType enum value
	ResourceTypeAwsFisExperimentTemplate = "AWS::FIS::ExperimentTemplate"

	// ResourceTypeAwsDataSyncLocationFsxWindows is a ResourceType enum value
	ResourceTypeAwsDataSyncLocationFsxWindows = "AWS::DataSync::LocationFSxWindows"

	// ResourceTypeAwsSesReceiptFilter is a ResourceType enum value
	ResourceTypeAwsSesReceiptFilter = "AWS::SES::ReceiptFilter"

	// ResourceTypeAwsGuardDutyFilter is a ResourceType enum value
	ResourceTypeAwsGuardDutyFilter = "AWS::GuardDuty::Filter"

	// ResourceTypeAwsSesTemplate is a ResourceType enum value
	ResourceTypeAwsSesTemplate = "AWS::SES::Template"

	// ResourceTypeAwsAmazonMqBroker is a ResourceType enum value
	ResourceTypeAwsAmazonMqBroker = "AWS::AmazonMQ::Broker"

	// ResourceTypeAwsAppConfigEnvironment is a ResourceType enum value
	ResourceTypeAwsAppConfigEnvironment = "AWS::AppConfig::Environment"

	// ResourceTypeAwsAppConfigConfigurationProfile is a ResourceType enum value
	ResourceTypeAwsAppConfigConfigurationProfile = "AWS::AppConfig::ConfigurationProfile"

	// ResourceTypeAwsCloud9EnvironmentEc2 is a ResourceType enum value
	ResourceTypeAwsCloud9EnvironmentEc2 = "AWS::Cloud9::EnvironmentEC2"

	// ResourceTypeAwsEventSchemasRegistry is a ResourceType enum value
	ResourceTypeAwsEventSchemasRegistry = "AWS::EventSchemas::Registry"

	// ResourceTypeAwsEventSchemasRegistryPolicy is a ResourceType enum value
	ResourceTypeAwsEventSchemasRegistryPolicy = "AWS::EventSchemas::RegistryPolicy"

	// ResourceTypeAwsEventSchemasDiscoverer is a ResourceType enum value
	ResourceTypeAwsEventSchemasDiscoverer = "AWS::EventSchemas::Discoverer"

	// ResourceTypeAwsFraudDetectorLabel is a ResourceType enum value
	ResourceTypeAwsFraudDetectorLabel = "AWS::FraudDetector::Label"

	// ResourceTypeAwsFraudDetectorEntityType is a ResourceType enum value
	ResourceTypeAwsFraudDetectorEntityType = "AWS::FraudDetector::EntityType"

	// ResourceTypeAwsFraudDetectorVariable is a ResourceType enum value
	ResourceTypeAwsFraudDetectorVariable = "AWS::FraudDetector::Variable"

	// ResourceTypeAwsFraudDetectorOutcome is a ResourceType enum value
	ResourceTypeAwsFraudDetectorOutcome = "AWS::FraudDetector::Outcome"

	// ResourceTypeAwsIoTAuthorizer is a ResourceType enum value
	ResourceTypeAwsIoTAuthorizer = "AWS::IoT::Authorizer"

	// ResourceTypeAwsIoTSecurityProfile is a ResourceType enum value
	ResourceTypeAwsIoTSecurityProfile = "AWS::IoT::SecurityProfile"

	// ResourceTypeAwsIoTRoleAlias is a ResourceType enum value
	ResourceTypeAwsIoTRoleAlias = "AWS::IoT::RoleAlias"

	// ResourceTypeAwsIoTDimension is a ResourceType enum value
	ResourceTypeAwsIoTDimension = "AWS::IoT::Dimension"

	// ResourceTypeAwsIoTanalyticsDatastore is a ResourceType enum value
	ResourceTypeAwsIoTanalyticsDatastore = "AWS::IoTAnalytics::Datastore"

	// ResourceTypeAwsLightsailBucket is a ResourceType enum value
	ResourceTypeAwsLightsailBucket = "AWS::Lightsail::Bucket"

	// ResourceTypeAwsLightsailStaticIp is a ResourceType enum value
	ResourceTypeAwsLightsailStaticIp = "AWS::Lightsail::StaticIp"

	// ResourceTypeAwsMediaPackagePackagingGroup is a ResourceType enum value
	ResourceTypeAwsMediaPackagePackagingGroup = "AWS::MediaPackage::PackagingGroup"

	// ResourceTypeAwsRoute53recoveryReadinessRecoveryGroup is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryReadinessRecoveryGroup = "AWS::Route53RecoveryReadiness::RecoveryGroup"

	// ResourceTypeAwsResilienceHubResiliencyPolicy is a ResourceType enum value
	ResourceTypeAwsResilienceHubResiliencyPolicy = "AWS::ResilienceHub::ResiliencyPolicy"

	// ResourceTypeAwsTransferWorkflow is a ResourceType enum value
	ResourceTypeAwsTransferWorkflow = "AWS::Transfer::Workflow"

	// ResourceTypeAwsEksIdentityProviderConfig is a ResourceType enum value
	ResourceTypeAwsEksIdentityProviderConfig = "AWS::EKS::IdentityProviderConfig"

	// ResourceTypeAwsEksAddon is a ResourceType enum value
	ResourceTypeAwsEksAddon = "AWS::EKS::Addon"

	// ResourceTypeAwsGlueMltransform is a ResourceType enum value
	ResourceTypeAwsGlueMltransform = "AWS::Glue::MLTransform"

	// ResourceTypeAwsIoTPolicy is a ResourceType enum value
	ResourceTypeAwsIoTPolicy = "AWS::IoT::Policy"

	// ResourceTypeAwsIoTMitigationAction is a ResourceType enum value
	ResourceTypeAwsIoTMitigationAction = "AWS::IoT::MitigationAction"

	// ResourceTypeAwsIoTtwinMakerWorkspace is a ResourceType enum value
	ResourceTypeAwsIoTtwinMakerWorkspace = "AWS::IoTTwinMaker::Workspace"

	// ResourceTypeAwsIoTtwinMakerEntity is a ResourceType enum value
	ResourceTypeAwsIoTtwinMakerEntity = "AWS::IoTTwinMaker::Entity"

	// ResourceTypeAwsIoTanalyticsDataset is a ResourceType enum value
	ResourceTypeAwsIoTanalyticsDataset = "AWS::IoTAnalytics::Dataset"

	// ResourceTypeAwsIoTanalyticsPipeline is a ResourceType enum value
	ResourceTypeAwsIoTanalyticsPipeline = "AWS::IoTAnalytics::Pipeline"

	// ResourceTypeAwsIoTanalyticsChannel is a ResourceType enum value
	ResourceTypeAwsIoTanalyticsChannel = "AWS::IoTAnalytics::Channel"

	// ResourceTypeAwsIoTsiteWiseDashboard is a ResourceType enum value
	ResourceTypeAwsIoTsiteWiseDashboard = "AWS::IoTSiteWise::Dashboard"

	// ResourceTypeAwsIoTsiteWiseProject is a ResourceType enum value
	ResourceTypeAwsIoTsiteWiseProject = "AWS::IoTSiteWise::Project"

	// ResourceTypeAwsIoTsiteWisePortal is a ResourceType enum value
	ResourceTypeAwsIoTsiteWisePortal = "AWS::IoTSiteWise::Portal"

	// ResourceTypeAwsIoTsiteWiseAssetModel is a ResourceType enum value
	ResourceTypeAwsIoTsiteWiseAssetModel = "AWS::IoTSiteWise::AssetModel"

	// ResourceTypeAwsIvsChannel is a ResourceType enum value
	ResourceTypeAwsIvsChannel = "AWS::IVS::Channel"

	// ResourceTypeAwsIvsRecordingConfiguration is a ResourceType enum value
	ResourceTypeAwsIvsRecordingConfiguration = "AWS::IVS::RecordingConfiguration"

	// ResourceTypeAwsIvsPlaybackKeyPair is a ResourceType enum value
	ResourceTypeAwsIvsPlaybackKeyPair = "AWS::IVS::PlaybackKeyPair"

	// ResourceTypeAwsKinesisAnalyticsV2Application is a ResourceType enum value
	ResourceTypeAwsKinesisAnalyticsV2Application = "AWS::KinesisAnalyticsV2::Application"

	// ResourceTypeAwsRdsGlobalCluster is a ResourceType enum value
	ResourceTypeAwsRdsGlobalCluster = "AWS::RDS::GlobalCluster"

	// ResourceTypeAwsS3MultiRegionAccessPoint is a ResourceType enum value
	ResourceTypeAwsS3MultiRegionAccessPoint = "AWS::S3::MultiRegionAccessPoint"

	// ResourceTypeAwsDeviceFarmTestGridProject is a ResourceType enum value
	ResourceTypeAwsDeviceFarmTestGridProject = "AWS::DeviceFarm::TestGridProject"

	// ResourceTypeAwsBudgetsBudgetsAction is a ResourceType enum value
	ResourceTypeAwsBudgetsBudgetsAction = "AWS::Budgets::BudgetsAction"

	// ResourceTypeAwsLexBot is a ResourceType enum value
	ResourceTypeAwsLexBot = "AWS::Lex::Bot"

	// ResourceTypeAwsCodeGuruReviewerRepositoryAssociation is a ResourceType enum value
	ResourceTypeAwsCodeGuruReviewerRepositoryAssociation = "AWS::CodeGuruReviewer::RepositoryAssociation"

	// ResourceTypeAwsIoTCustomMetric is a ResourceType enum value
	ResourceTypeAwsIoTCustomMetric = "AWS::IoT::CustomMetric"

	// ResourceTypeAwsRoute53resolverFirewallDomainList is a ResourceType enum value
	ResourceTypeAwsRoute53resolverFirewallDomainList = "AWS::Route53Resolver::FirewallDomainList"

	// ResourceTypeAwsRoboMakerRobotApplicationVersion is a ResourceType enum value
	ResourceTypeAwsRoboMakerRobotApplicationVersion = "AWS::RoboMaker::RobotApplicationVersion"

	// ResourceTypeAwsEc2TrafficMirrorSession is a ResourceType enum value
	ResourceTypeAwsEc2TrafficMirrorSession = "AWS::EC2::TrafficMirrorSession"

	// ResourceTypeAwsIoTsiteWiseGateway is a ResourceType enum value
	ResourceTypeAwsIoTsiteWiseGateway = "AWS::IoTSiteWise::Gateway"

	// ResourceTypeAwsLexBotAlias is a ResourceType enum value
	ResourceTypeAwsLexBotAlias = "AWS::Lex::BotAlias"

	// ResourceTypeAwsLookoutMetricsAlert is a ResourceType enum value
	ResourceTypeAwsLookoutMetricsAlert = "AWS::LookoutMetrics::Alert"

	// ResourceTypeAwsIoTAccountAuditConfiguration is a ResourceType enum value
	ResourceTypeAwsIoTAccountAuditConfiguration = "AWS::IoT::AccountAuditConfiguration"

	// ResourceTypeAwsEc2TrafficMirrorTarget is a ResourceType enum value
	ResourceTypeAwsEc2TrafficMirrorTarget = "AWS::EC2::TrafficMirrorTarget"

	// ResourceTypeAwsS3StorageLens is a ResourceType enum value
	ResourceTypeAwsS3StorageLens = "AWS::S3::StorageLens"

	// ResourceTypeAwsIoTScheduledAudit is a ResourceType enum value
	ResourceTypeAwsIoTScheduledAudit = "AWS::IoT::ScheduledAudit"

	// ResourceTypeAwsEventsConnection is a ResourceType enum value
	ResourceTypeAwsEventsConnection = "AWS::Events::Connection"

	// ResourceTypeAwsEventSchemasSchema is a ResourceType enum value
	ResourceTypeAwsEventSchemasSchema = "AWS::EventSchemas::Schema"

	// ResourceTypeAwsMediaPackagePackagingConfiguration is a ResourceType enum value
	ResourceTypeAwsMediaPackagePackagingConfiguration = "AWS::MediaPackage::PackagingConfiguration"

	// ResourceTypeAwsKinesisVideoSignalingChannel is a ResourceType enum value
	ResourceTypeAwsKinesisVideoSignalingChannel = "AWS::KinesisVideo::SignalingChannel"

	// ResourceTypeAwsAppStreamDirectoryConfig is a ResourceType enum value
	ResourceTypeAwsAppStreamDirectoryConfig = "AWS::AppStream::DirectoryConfig"

	// ResourceTypeAwsLookoutVisionProject is a ResourceType enum value
	ResourceTypeAwsLookoutVisionProject = "AWS::LookoutVision::Project"

	// ResourceTypeAwsRoute53recoveryControlCluster is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryControlCluster = "AWS::Route53RecoveryControl::Cluster"

	// ResourceTypeAwsRoute53recoveryControlSafetyRule is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryControlSafetyRule = "AWS::Route53RecoveryControl::SafetyRule"

	// ResourceTypeAwsRoute53recoveryControlControlPanel is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryControlControlPanel = "AWS::Route53RecoveryControl::ControlPanel"

	// ResourceTypeAwsRoute53recoveryControlRoutingControl is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryControlRoutingControl = "AWS::Route53RecoveryControl::RoutingControl"

	// ResourceTypeAwsRoute53recoveryReadinessResourceSet is a ResourceType enum value
	ResourceTypeAwsRoute53recoveryReadinessResourceSet = "AWS::Route53RecoveryReadiness::ResourceSet"

	// ResourceTypeAwsRoboMakerSimulationApplication is a ResourceType enum value
	ResourceTypeAwsRoboMakerSimulationApplication = "AWS::RoboMaker::SimulationApplication"

	// ResourceTypeAwsRoboMakerRobotApplication is a ResourceType enum value
	ResourceTypeAwsRoboMakerRobotApplication = "AWS::RoboMaker::RobotApplication"

	// ResourceTypeAwsHealthLakeFhirdatastore is a ResourceType enum value
	ResourceTypeAwsHealthLakeFhirdatastore = "AWS::HealthLake::FHIRDatastore"

	// ResourceTypeAwsPinpointSegment is a ResourceType enum value
	ResourceTypeAwsPinpointSegment = "AWS::Pinpoint::Segment"

	// ResourceTypeAwsPinpointApplicationSettings is a ResourceType enum value
	ResourceTypeAwsPinpointApplicationSettings = "AWS::Pinpoint::ApplicationSettings"

	// ResourceTypeAwsEventsRule is a ResourceType enum value
	ResourceTypeAwsEventsRule = "AWS::Events::Rule"

	// ResourceTypeAwsEc2Dhcpoptions is a ResourceType enum value
	ResourceTypeAwsEc2Dhcpoptions = "AWS::EC2::DHCPOptions"

	// ResourceTypeAwsEc2NetworkInsightsPath is a ResourceType enum value
	ResourceTypeAwsEc2NetworkInsightsPath = "AWS::EC2::NetworkInsightsPath"

	// ResourceTypeAwsEc2TrafficMirrorFilter is a ResourceType enum value
	ResourceTypeAwsEc2TrafficMirrorFilter = "AWS::EC2::TrafficMirrorFilter"

	// ResourceTypeAwsEc2Ipam is a ResourceType enum value
	ResourceTypeAwsEc2Ipam = "AWS::EC2::IPAM"

	// ResourceTypeAwsIoTtwinMakerScene is a ResourceType enum value
	ResourceTypeAwsIoTtwinMakerScene = "AWS::IoTTwinMaker::Scene"

	// ResourceTypeAwsNetworkManagerTransitGatewayRegistration is a ResourceType enum value
	ResourceTypeAwsNetworkManagerTransitGatewayRegistration = "AWS::NetworkManager::TransitGatewayRegistration"

	// ResourceTypeAwsCustomerProfilesDomain is a ResourceType enum value
	ResourceTypeAwsCustomerProfilesDomain = "AWS::CustomerProfiles::Domain"

	// ResourceTypeAwsAutoScalingWarmPool is a ResourceType enum value
	ResourceTypeAwsAutoScalingWarmPool = "AWS::AutoScaling::WarmPool"

	// ResourceTypeAwsConnectPhoneNumber is a ResourceType enum value
	ResourceTypeAwsConnectPhoneNumber = "AWS::Connect::PhoneNumber"

	// ResourceTypeAwsAppConfigDeploymentStrategy is a ResourceType enum value
	ResourceTypeAwsAppConfigDeploymentStrategy = "AWS::AppConfig::DeploymentStrategy"

	// ResourceTypeAwsAppFlowFlow is a ResourceType enum value
	ResourceTypeAwsAppFlowFlow = "AWS::AppFlow::Flow"

	// ResourceTypeAwsAuditManagerAssessment is a ResourceType enum value
	ResourceTypeAwsAuditManagerAssessment = "AWS::AuditManager::Assessment"

	// ResourceTypeAwsCloudWatchMetricStream is a ResourceType enum value
	ResourceTypeAwsCloudWatchMetricStream = "AWS::CloudWatch::MetricStream"

	// ResourceTypeAwsDeviceFarmInstanceProfile is a ResourceType enum value
	ResourceTypeAwsDeviceFarmInstanceProfile = "AWS::DeviceFarm::InstanceProfile"

	// ResourceTypeAwsDeviceFarmProject is a ResourceType enum value
	ResourceTypeAwsDeviceFarmProject = "AWS::DeviceFarm::Project"

	// ResourceTypeAwsEc2Ec2fleet is a ResourceType enum value
	ResourceTypeAwsEc2Ec2fleet = "AWS::EC2::EC2Fleet"

	// ResourceTypeAwsEc2SubnetRouteTableAssociation is a ResourceType enum value
	ResourceTypeAwsEc2SubnetRouteTableAssociation = "AWS::EC2::SubnetRouteTableAssociation"

	// ResourceTypeAwsEcrPullThroughCacheRule is a ResourceType enum value
	ResourceTypeAwsEcrPullThroughCacheRule = "AWS::ECR::PullThroughCacheRule"

	// ResourceTypeAwsGroundStationConfig is a ResourceType enum value
	ResourceTypeAwsGroundStationConfig = "AWS::GroundStation::Config"

	// ResourceTypeAwsImageBuilderImagePipeline is a ResourceType enum value
	ResourceTypeAwsImageBuilderImagePipeline = "AWS::ImageBuilder::ImagePipeline"

	// ResourceTypeAwsIoTFleetMetric is a ResourceType enum value
	ResourceTypeAwsIoTFleetMetric = "AWS::IoT::FleetMetric"

	// ResourceTypeAwsIoTwirelessServiceProfile is a ResourceType enum value
	ResourceTypeAwsIoTwirelessServiceProfile = "AWS::IoTWireless::ServiceProfile"

	// ResourceTypeAwsNetworkManagerDevice is a ResourceType enum value
	ResourceTypeAwsNetworkManagerDevice = "AWS::NetworkManager::Device"

	// ResourceTypeAwsNetworkManagerGlobalNetwork is a ResourceType enum value
	ResourceTypeAwsNetworkManagerGlobalNetwork = "AWS::NetworkManager::GlobalNetwork"

	// ResourceTypeAwsNetworkManagerLink is a ResourceType enum value
	ResourceTypeAwsNetworkManagerLink = "AWS::NetworkManager::Link"

	// ResourceTypeAwsNetworkManagerSite is a ResourceType enum value
	ResourceTypeAwsNetworkManagerSite = "AWS::NetworkManager::Site"

	// ResourceTypeAwsPanoramaPackage is a ResourceType enum value
	ResourceTypeAwsPanoramaPackage = "AWS::Panorama::Package"

	// ResourceTypeAwsPinpointApp is a ResourceType enum value
	ResourceTypeAwsPinpointApp = "AWS::Pinpoint::App"

	// ResourceTypeAwsRedshiftScheduledAction is a ResourceType enum value
	ResourceTypeAwsRedshiftScheduledAction = "AWS::Redshift::ScheduledAction"

	// ResourceTypeAwsRoute53resolverFirewallRuleGroupAssociation is a ResourceType enum value
	ResourceTypeAwsRoute53resolverFirewallRuleGroupAssociation = "AWS::Route53Resolver::FirewallRuleGroupAssociation"

	// ResourceTypeAwsSageMakerAppImageConfig is a ResourceType enum value
	ResourceTypeAwsSageMakerAppImageConfig = "AWS::SageMaker::AppImageConfig"

	// ResourceTypeAwsSageMakerImage is a ResourceType enum value
	ResourceTypeAwsSageMakerImage = "AWS::SageMaker::Image"

	// ResourceTypeAwsEcsTaskSet is a ResourceType enum value
	ResourceTypeAwsEcsTaskSet = "AWS::ECS::TaskSet"

	// ResourceTypeAwsCassandraKeyspace is a ResourceType enum value
	ResourceTypeAwsCassandraKeyspace = "AWS::Cassandra::Keyspace"

	// ResourceTypeAwsSignerSigningProfile is a ResourceType enum value
	ResourceTypeAwsSignerSigningProfile = "AWS::Signer::SigningProfile"

	// ResourceTypeAwsAmplifyApp is a ResourceType enum value
	ResourceTypeAwsAmplifyApp = "AWS::Amplify::App"

	// ResourceTypeAwsAppMeshVirtualNode is a ResourceType enum value
	ResourceTypeAwsAppMeshVirtualNode = "AWS::AppMesh::VirtualNode"

	// ResourceTypeAwsAppMeshVirtualService is a ResourceType enum value
	ResourceTypeAwsAppMeshVirtualService = "AWS::AppMesh::VirtualService"

	// ResourceTypeAwsAppRunnerVpcConnector is a ResourceType enum value
	ResourceTypeAwsAppRunnerVpcConnector = "AWS::AppRunner::VpcConnector"

	// ResourceTypeAwsAppStreamApplication is a ResourceType enum value
	ResourceTypeAwsAppStreamApplication = "AWS::AppStream::Application"

	// ResourceTypeAwsCodeArtifactRepository is a ResourceType enum value
	ResourceTypeAwsCodeArtifactRepository = "AWS::CodeArtifact::Repository"

	// ResourceTypeAwsEc2PrefixList is a ResourceType enum value
	ResourceTypeAwsEc2PrefixList = "AWS::EC2::PrefixList"

	// ResourceTypeAwsEc2SpotFleet is a ResourceType enum value
	ResourceTypeAwsEc2SpotFleet = "AWS::EC2::SpotFleet"

	// ResourceTypeAwsEvidentlyProject is a ResourceType enum value
	ResourceTypeAwsEvidentlyProject = "AWS::Evidently::Project"

	// ResourceTypeAwsForecastDataset is a ResourceType enum value
	ResourceTypeAwsForecastDataset = "AWS::Forecast::Dataset"

	// ResourceTypeAwsIamSamlprovider is a ResourceType enum value
	ResourceTypeAwsIamSamlprovider = "AWS::IAM::SAMLProvider"

	// ResourceTypeAwsIamServerCertificate is a ResourceType enum value
	ResourceTypeAwsIamServerCertificate = "AWS::IAM::ServerCertificate"

	// ResourceTypeAwsPinpointCampaign is a ResourceType enum value
	ResourceTypeAwsPinpointCampaign = "AWS::Pinpoint::Campaign"

	// ResourceTypeAwsPinpointInAppTemplate is a ResourceType enum value
	ResourceTypeAwsPinpointInAppTemplate = "AWS::Pinpoint::InAppTemplate"

	// ResourceTypeAwsSageMakerDomain is a ResourceType enum value
	ResourceTypeAwsSageMakerDomain = "AWS::SageMaker::Domain"

	// ResourceTypeAwsTransferAgreement is a ResourceType enum value
	ResourceTypeAwsTransferAgreement = "AWS::Transfer::Agreement"

	// ResourceTypeAwsTransferConnector is a ResourceType enum value
	ResourceTypeAwsTransferConnector = "AWS::Transfer::Connector"

	// ResourceTypeAwsKinesisFirehoseDeliveryStream is a ResourceType enum value
	ResourceTypeAwsKinesisFirehoseDeliveryStream = "AWS::KinesisFirehose::DeliveryStream"

	// ResourceTypeAwsAmplifyBranch is a ResourceType enum value
	ResourceTypeAwsAmplifyBranch = "AWS::Amplify::Branch"

	// ResourceTypeAwsAppIntegrationsEventIntegration is a ResourceType enum value
	ResourceTypeAwsAppIntegrationsEventIntegration = "AWS::AppIntegrations::EventIntegration"

	// ResourceTypeAwsAppMeshRoute is a ResourceType enum value
	ResourceTypeAwsAppMeshRoute = "AWS::AppMesh::Route"

	// ResourceTypeAwsAthenaPreparedStatement is a ResourceType enum value
	ResourceTypeAwsAthenaPreparedStatement = "AWS::Athena::PreparedStatement"

	// ResourceTypeAwsEc2Ipamscope is a ResourceType enum value
	ResourceTypeAwsEc2Ipamscope = "AWS::EC2::IPAMScope"

	// ResourceTypeAwsEvidentlyLaunch is a ResourceType enum value
	ResourceTypeAwsEvidentlyLaunch = "AWS::Evidently::Launch"

	// ResourceTypeAwsForecastDatasetGroup is a ResourceType enum value
	ResourceTypeAwsForecastDatasetGroup = "AWS::Forecast::DatasetGroup"

	// ResourceTypeAwsGreengrassV2ComponentVersion is a ResourceType enum value
	ResourceTypeAwsGreengrassV2ComponentVersion = "AWS::GreengrassV2::ComponentVersion"

	// ResourceTypeAwsGroundStationMissionProfile is a ResourceType enum value
	ResourceTypeAwsGroundStationMissionProfile = "AWS::GroundStation::MissionProfile"

	// ResourceTypeAwsMediaConnectFlowEntitlement is a ResourceType enum value
	ResourceTypeAwsMediaConnectFlowEntitlement = "AWS::MediaConnect::FlowEntitlement"

	// ResourceTypeAwsMediaConnectFlowVpcInterface is a ResourceType enum value
	ResourceTypeAwsMediaConnectFlowVpcInterface = "AWS::MediaConnect::FlowVpcInterface"

	// ResourceTypeAwsMediaTailorPlaybackConfiguration is a ResourceType enum value
	ResourceTypeAwsMediaTailorPlaybackConfiguration = "AWS::MediaTailor::PlaybackConfiguration"

	// ResourceTypeAwsMskConfiguration is a ResourceType enum value
	ResourceTypeAwsMskConfiguration = "AWS::MSK::Configuration"

	// ResourceTypeAwsPersonalizeDataset is a ResourceType enum value
	ResourceTypeAwsPersonalizeDataset = "AWS::Personalize::Dataset"

	// ResourceTypeAwsPersonalizeSchema is a ResourceType enum value
	ResourceTypeAwsPersonalizeSchema = "AWS::Personalize::Schema"

	// ResourceTypeAwsPersonalizeSolution is a ResourceType enum value
	ResourceTypeAwsPersonalizeSolution = "AWS::Personalize::Solution"

	// ResourceTypeAwsPinpointEmailTemplate is a ResourceType enum value
	ResourceTypeAwsPinpointEmailTemplate = "AWS::Pinpoint::EmailTemplate"

	// ResourceTypeAwsPinpointEventStream is a ResourceType enum value
	ResourceTypeAwsPinpointEventStream = "AWS::Pinpoint::EventStream"

	// ResourceTypeAwsResilienceHubApp is a ResourceType enum value
	ResourceTypeAwsResilienceHubApp = "AWS::ResilienceHub::App"

	// ResourceTypeAwsAcmpcaCertificateAuthority is a ResourceType enum value
	ResourceTypeAwsAcmpcaCertificateAuthority = "AWS::ACMPCA::CertificateAuthority"

	// ResourceTypeAwsAppConfigHostedConfigurationVersion is a ResourceType enum value
	ResourceTypeAwsAppConfigHostedConfigurationVersion = "AWS::AppConfig::HostedConfigurationVersion"

	// ResourceTypeAwsAppMeshVirtualGateway is a ResourceType enum value
	ResourceTypeAwsAppMeshVirtualGateway = "AWS::AppMesh::VirtualGateway"

	// ResourceTypeAwsAppMeshVirtualRouter is a ResourceType enum value
	ResourceTypeAwsAppMeshVirtualRouter = "AWS::AppMesh::VirtualRouter"

	// ResourceTypeAwsAppRunnerService is a ResourceType enum value
	ResourceTypeAwsAppRunnerService = "AWS::AppRunner::Service"

	// ResourceTypeAwsCustomerProfilesObjectType is a ResourceType enum value
	ResourceTypeAwsCustomerProfilesObjectType = "AWS::CustomerProfiles::ObjectType"

	// ResourceTypeAwsDmsEndpoint is a ResourceType enum value
	ResourceTypeAwsDmsEndpoint = "AWS::DMS::Endpoint"

	// ResourceTypeAwsEc2CapacityReservation is a ResourceType enum value
	ResourceTypeAwsEc2CapacityReservation = "AWS::EC2::CapacityReservation"

	// ResourceTypeAwsEc2ClientVpnEndpoint is a ResourceType enum value
	ResourceTypeAwsEc2ClientVpnEndpoint = "AWS::EC2::ClientVpnEndpoint"

	// ResourceTypeAwsKendraIndex is a ResourceType enum value
	ResourceTypeAwsKendraIndex = "AWS::Kendra::Index"

	// ResourceTypeAwsKinesisVideoStream is a ResourceType enum value
	ResourceTypeAwsKinesisVideoStream = "AWS::KinesisVideo::Stream"

	// ResourceTypeAwsLogsDestination is a ResourceType enum value
	ResourceTypeAwsLogsDestination = "AWS::Logs::Destination"

	// ResourceTypeAwsPinpointEmailChannel is a ResourceType enum value
	ResourceTypeAwsPinpointEmailChannel = "AWS::Pinpoint::EmailChannel"

	// ResourceTypeAwsS3AccessPoint is a ResourceType enum value
	ResourceTypeAwsS3AccessPoint = "AWS::S3::AccessPoint"

	// ResourceTypeAwsNetworkManagerCustomerGatewayAssociation is a ResourceType enum value
	ResourceTypeAwsNetworkManagerCustomerGatewayAssociation = "AWS::NetworkManager::CustomerGatewayAssociation"

	// ResourceTypeAwsNetworkManagerLinkAssociation is a ResourceType enum value
	ResourceTypeAwsNetworkManagerLinkAssociation = "AWS::NetworkManager::LinkAssociation"

	// ResourceTypeAwsIoTwirelessMulticastGroup is a ResourceType enum value
	ResourceTypeAwsIoTwirelessMulticastGroup = "AWS::IoTWireless::MulticastGroup"

	// ResourceTypeAwsPersonalizeDatasetGroup is a ResourceType enum value
	ResourceTypeAwsPersonalizeDatasetGroup = "AWS::Personalize::DatasetGroup"

	// ResourceTypeAwsIoTtwinMakerComponentType is a ResourceType enum value
	ResourceTypeAwsIoTtwinMakerComponentType = "AWS::IoTTwinMaker::ComponentType"

	// ResourceTypeAwsCodeBuildReportGroup is a ResourceType enum value
	ResourceTypeAwsCodeBuildReportGroup = "AWS::CodeBuild::ReportGroup"

	// ResourceTypeAwsSageMakerFeatureGroup is a ResourceType enum value
	ResourceTypeAwsSageMakerFeatureGroup = "AWS::SageMaker::FeatureGroup"

	// ResourceTypeAwsMskBatchScramSecret is a ResourceType enum value
	ResourceTypeAwsMskBatchScramSecret = "AWS::MSK::BatchScramSecret"

	// ResourceTypeAwsAppStreamStack is a ResourceType enum value
	ResourceTypeAwsAppStreamStack = "AWS::AppStream::Stack"

	// ResourceTypeAwsIoTJobTemplate is a ResourceType enum value
	ResourceTypeAwsIoTJobTemplate = "AWS::IoT::JobTemplate"

	// ResourceTypeAwsIoTwirelessFuotaTask is a ResourceType enum value
	ResourceTypeAwsIoTwirelessFuotaTask = "AWS::IoTWireless::FuotaTask"

	// ResourceTypeAwsIoTProvisioningTemplate is a ResourceType enum value
	ResourceTypeAwsIoTProvisioningTemplate = "AWS::IoT::ProvisioningTemplate"

	// ResourceTypeAwsInspectorV2Filter is a ResourceType enum value
	ResourceTypeAwsInspectorV2Filter = "AWS::InspectorV2::Filter"

	// ResourceTypeAwsRoute53resolverResolverQueryLoggingConfigAssociation is a ResourceType enum value
	ResourceTypeAwsRoute53resolverResolverQueryLoggingConfigAssociation = "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation"

	// ResourceTypeAwsServiceDiscoveryInstance is a ResourceType enum value
	ResourceTypeAwsServiceDiscoveryInstance = "AWS::ServiceDiscovery::Instance"

	// ResourceTypeAwsTransferCertificate is a ResourceType enum value
	ResourceTypeAwsTransferCertificate = "AWS::Transfer::Certificate"

	// ResourceTypeAwsMediaConnectFlowSource is a ResourceType enum value
	ResourceTypeAwsMediaConnectFlowSource = "AWS::MediaConnect::FlowSource"

	// ResourceTypeAwsApsRuleGroupsNamespace is a ResourceType enum value
	ResourceTypeAwsApsRuleGroupsNamespace = "AWS::APS::RuleGroupsNamespace"

	// ResourceTypeAwsCodeGuruProfilerProfilingGroup is a ResourceType enum value
	ResourceTypeAwsCodeGuruProfilerProfilingGroup = "AWS::CodeGuruProfiler::ProfilingGroup"

	// ResourceTypeAwsRoute53resolverResolverQueryLoggingConfig is a ResourceType enum value
	ResourceTypeAwsRoute53resolverResolverQueryLoggingConfig = "AWS::Route53Resolver::ResolverQueryLoggingConfig"

	// ResourceTypeAwsBatchSchedulingPolicy is a ResourceType enum value
	ResourceTypeAwsBatchSchedulingPolicy = "AWS::Batch::SchedulingPolicy"

	// ResourceTypeAwsAcmpcaCertificateAuthorityActivation is a ResourceType enum value
	ResourceTypeAwsAcmpcaCertificateAuthorityActivation = "AWS::ACMPCA::CertificateAuthorityActivation"

	// ResourceTypeAwsAppMeshGatewayRoute is a ResourceType enum value
	ResourceTypeAwsAppMeshGatewayRoute = "AWS::AppMesh::GatewayRoute"

	// ResourceTypeAwsAppMeshMesh is a ResourceType enum value
	ResourceTypeAwsAppMeshMesh = "AWS::AppMesh::Mesh"

	// ResourceTypeAwsConnectInstance is a ResourceType enum value
	ResourceTypeAwsConnectInstance = "AWS::Connect::Instance"

	// ResourceTypeAwsConnectQuickConnect is a ResourceType enum value
	ResourceTypeAwsConnectQuickConnect = "AWS::Connect::QuickConnect"

	// ResourceTypeAwsEc2CarrierGateway is a ResourceType enum value
	ResourceTypeAwsEc2CarrierGateway = "AWS::EC2::CarrierGateway"

	// ResourceTypeAwsEc2Ipampool is a ResourceType enum value
	ResourceTypeAwsEc2Ipampool = "AWS::EC2::IPAMPool"

	// ResourceTypeAwsEc2TransitGatewayConnect is a ResourceType enum value
	ResourceTypeAwsEc2TransitGatewayConnect = "AWS::EC2::TransitGatewayConnect"

	// ResourceTypeAwsEc2TransitGatewayMulticastDomain is a ResourceType enum value
	ResourceTypeAwsEc2TransitGatewayMulticastDomain = "AWS::EC2::TransitGatewayMulticastDomain"

	// ResourceTypeAwsEcsCapacityProvider is a ResourceType enum value
	ResourceTypeAwsEcsCapacityProvider = "AWS::ECS::CapacityProvider"

	// ResourceTypeAwsIamInstanceProfile is a ResourceType enum value
	ResourceTypeAwsIamInstanceProfile = "AWS::IAM::InstanceProfile"

	// ResourceTypeAwsIoTCacertificate is a ResourceType enum value
	ResourceTypeAwsIoTCacertificate = "AWS::IoT::CACertificate"

	// ResourceTypeAwsIoTtwinMakerSyncJob is a ResourceType enum value
	ResourceTypeAwsIoTtwinMakerSyncJob = "AWS::IoTTwinMaker::SyncJob"

	// ResourceTypeAwsKafkaConnectConnector is a ResourceType enum value
	ResourceTypeAwsKafkaConnectConnector = "AWS::KafkaConnect::Connector"

	// ResourceTypeAwsLambdaCodeSigningConfig is a ResourceType enum value
	ResourceTypeAwsLambdaCodeSigningConfig = "AWS::Lambda::CodeSigningConfig"

	// ResourceTypeAwsNetworkManagerConnectPeer is a ResourceType enum value
	ResourceTypeAwsNetworkManagerConnectPeer = "AWS::NetworkManager::ConnectPeer"

	// ResourceTypeAwsResourceExplorer2Index is a ResourceType enum value
	ResourceTypeAwsResourceExplorer2Index = "AWS::ResourceExplorer2::Index"

	// ResourceTypeAwsAppStreamFleet is a ResourceType enum value
	ResourceTypeAwsAppStreamFleet = "AWS::AppStream::Fleet"

	// ResourceTypeAwsCognitoUserPool is a ResourceType enum value
	ResourceTypeAwsCognitoUserPool = "AWS::Cognito::UserPool"

	// ResourceTypeAwsCognitoUserPoolClient is a ResourceType enum value
	ResourceTypeAwsCognitoUserPoolClient = "AWS::Cognito::UserPoolClient"

	// ResourceTypeAwsCognitoUserPoolGroup is a ResourceType enum value
	ResourceTypeAwsCognitoUserPoolGroup = "AWS::Cognito::UserPoolGroup"

	// ResourceTypeAwsEc2NetworkInsightsAccessScope is a ResourceType enum value
	ResourceTypeAwsEc2NetworkInsightsAccessScope = "AWS::EC2::NetworkInsightsAccessScope"

	// ResourceTypeAwsEc2NetworkInsightsAnalysis is a ResourceType enum value
	ResourceTypeAwsEc2NetworkInsightsAnalysis = "AWS::EC2::NetworkInsightsAnalysis"

	// ResourceTypeAwsGrafanaWorkspace is a ResourceType enum value
	ResourceTypeAwsGrafanaWorkspace = "AWS::Grafana::Workspace"

	// ResourceTypeAwsGroundStationDataflowEndpointGroup is a ResourceType enum value
	ResourceTypeAwsGroundStationDataflowEndpointGroup = "AWS::GroundStation::DataflowEndpointGroup"

	// ResourceTypeAwsImageBuilderImageRecipe is a ResourceType enum value
	ResourceTypeAwsImageBuilderImageRecipe = "AWS::ImageBuilder::ImageRecipe"

	// ResourceTypeAwsKmsAlias is a ResourceType enum value
	ResourceTypeAwsKmsAlias = "AWS::KMS::Alias"

	// ResourceTypeAwsM2Environment is a ResourceType enum value
	ResourceTypeAwsM2Environment = "AWS::M2::Environment"

	// ResourceTypeAwsQuickSightDataSource is a ResourceType enum value
	ResourceTypeAwsQuickSightDataSource = "AWS::QuickSight::DataSource"

	// ResourceTypeAwsQuickSightTemplate is a ResourceType enum value
	ResourceTypeAwsQuickSightTemplate = "AWS::QuickSight::Template"

	// ResourceTypeAwsQuickSightTheme is a ResourceType enum value
	ResourceTypeAwsQuickSightTheme = "AWS::QuickSight::Theme"

	// ResourceTypeAwsRdsOptionGroup is a ResourceType enum value
	ResourceTypeAwsRdsOptionGroup = "AWS::RDS::OptionGroup"

	// ResourceTypeAwsRedshiftEndpointAccess is a ResourceType enum value
	ResourceTypeAwsRedshiftEndpointAccess = "AWS::Redshift::EndpointAccess"

	// ResourceTypeAwsRoute53resolverFirewallRuleGroup is a ResourceType enum value
	ResourceTypeAwsRoute53resolverFirewallRuleGroup = "AWS::Route53Resolver::FirewallRuleGroup"

	// ResourceTypeAwsSsmDocument is a ResourceType enum value
	ResourceTypeAwsSsmDocument = "AWS::SSM::Document"
)
View Source
const (
	// SortOrderAscending is a SortOrder enum value
	SortOrderAscending = "ASCENDING"

	// SortOrderDescending is a SortOrder enum value
	SortOrderDescending = "DESCENDING"
)
View Source
const (

	// ErrCodeConformancePackTemplateValidationException for service response error code
	// "ConformancePackTemplateValidationException".
	//
	// You have specified a template that is not valid or supported.
	ErrCodeConformancePackTemplateValidationException = "ConformancePackTemplateValidationException"

	// ErrCodeIdempotentParameterMismatch for service response error code
	// "IdempotentParameterMismatch".
	//
	// Using the same client token with one or more different parameters. Specify
	// a new client token with the parameter changes and try again.
	ErrCodeIdempotentParameterMismatch = "IdempotentParameterMismatch"

	// ErrCodeInsufficientDeliveryPolicyException for service response error code
	// "InsufficientDeliveryPolicyException".
	//
	// Your Amazon S3 bucket policy does not permit Config to write to it.
	ErrCodeInsufficientDeliveryPolicyException = "InsufficientDeliveryPolicyException"

	// ErrCodeInsufficientPermissionsException for service response error code
	// "InsufficientPermissionsException".
	//
	// Indicates one of the following errors:
	//
	//    * For PutConfigRule, the rule cannot be created because the IAM role assigned
	//    to Config lacks permissions to perform the config:Put* action.
	//
	//    * For PutConfigRule, the Lambda function cannot be invoked. Check the
	//    function ARN, and check the function's permissions.
	//
	//    * For PutOrganizationConfigRule, organization Config rule cannot be created
	//    because you do not have permissions to call IAM GetRole action or create
	//    a service-linked role.
	//
	//    * For PutConformancePack and PutOrganizationConformancePack, a conformance
	//    pack cannot be created because you do not have the following permissions:
	//    You do not have permission to call IAM GetRole action or create a service-linked
	//    role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.
	ErrCodeInsufficientPermissionsException = "InsufficientPermissionsException"

	// ErrCodeInvalidConfigurationRecorderNameException for service response error code
	// "InvalidConfigurationRecorderNameException".
	//
	// You have provided a name for the configuration recorder that is not valid.
	ErrCodeInvalidConfigurationRecorderNameException = "InvalidConfigurationRecorderNameException"

	// ErrCodeInvalidDeliveryChannelNameException for service response error code
	// "InvalidDeliveryChannelNameException".
	//
	// The specified delivery channel name is not valid.
	ErrCodeInvalidDeliveryChannelNameException = "InvalidDeliveryChannelNameException"

	// ErrCodeInvalidExpressionException for service response error code
	// "InvalidExpressionException".
	//
	// The syntax of the query is incorrect.
	ErrCodeInvalidExpressionException = "InvalidExpressionException"

	// ErrCodeInvalidLimitException for service response error code
	// "InvalidLimitException".
	//
	// The specified limit is outside the allowable range.
	ErrCodeInvalidLimitException = "InvalidLimitException"

	// ErrCodeInvalidNextTokenException for service response error code
	// "InvalidNextTokenException".
	//
	// The specified next token is not valid. Specify the nextToken string that
	// was returned in the previous response to get the next page of results.
	ErrCodeInvalidNextTokenException = "InvalidNextTokenException"

	// ErrCodeInvalidParameterValueException for service response error code
	// "InvalidParameterValueException".
	//
	// One or more of the specified parameters are not valid. Verify that your parameters
	// are valid and try again.
	ErrCodeInvalidParameterValueException = "InvalidParameterValueException"

	// ErrCodeInvalidRecordingGroupException for service response error code
	// "InvalidRecordingGroupException".
	//
	// Indicates one of the following errors:
	//
	//    * You have provided a combination of parameter values that is not valid.
	//    For example: Setting the allSupported field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	//    to true, but providing a non-empty list for the resourceTypesfield of
	//    RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html).
	//    Setting the allSupported field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	//    to true, but also setting the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	//    to EXCLUSION_BY_RESOURCE_TYPES.
	//
	//    * Every parameter is either null, false, or empty.
	//
	//    * You have reached the limit of the number of resource types you can provide
	//    for the recording group.
	//
	//    * You have provided resource types or a recording strategy that are not
	//    valid.
	ErrCodeInvalidRecordingGroupException = "InvalidRecordingGroupException"

	// ErrCodeInvalidResultTokenException for service response error code
	// "InvalidResultTokenException".
	//
	// The specified ResultToken is not valid.
	ErrCodeInvalidResultTokenException = "InvalidResultTokenException"

	// ErrCodeInvalidRoleException for service response error code
	// "InvalidRoleException".
	//
	// You have provided a null or empty Amazon Resource Name (ARN) for the IAM
	// role assumed by Config and used by the configuration recorder.
	ErrCodeInvalidRoleException = "InvalidRoleException"

	// ErrCodeInvalidS3KeyPrefixException for service response error code
	// "InvalidS3KeyPrefixException".
	//
	// The specified Amazon S3 key prefix is not valid.
	ErrCodeInvalidS3KeyPrefixException = "InvalidS3KeyPrefixException"

	// ErrCodeInvalidS3KmsKeyArnException for service response error code
	// "InvalidS3KmsKeyArnException".
	//
	// The specified Amazon KMS Key ARN is not valid.
	ErrCodeInvalidS3KmsKeyArnException = "InvalidS3KmsKeyArnException"

	// ErrCodeInvalidSNSTopicARNException for service response error code
	// "InvalidSNSTopicARNException".
	//
	// The specified Amazon SNS topic does not exist.
	ErrCodeInvalidSNSTopicARNException = "InvalidSNSTopicARNException"

	// ErrCodeInvalidTimeRangeException for service response error code
	// "InvalidTimeRangeException".
	//
	// The specified time range is not valid. The earlier time is not chronologically
	// before the later time.
	ErrCodeInvalidTimeRangeException = "InvalidTimeRangeException"

	// ErrCodeLastDeliveryChannelDeleteFailedException for service response error code
	// "LastDeliveryChannelDeleteFailedException".
	//
	// You cannot delete the delivery channel you specified because the configuration
	// recorder is running.
	ErrCodeLastDeliveryChannelDeleteFailedException = "LastDeliveryChannelDeleteFailedException"

	// ErrCodeLimitExceededException for service response error code
	// "LimitExceededException".
	//
	// For StartConfigRulesEvaluation API, this exception is thrown if an evaluation
	// is in progress or if you call the StartConfigRulesEvaluation API more than
	// once per minute.
	//
	// For PutConfigurationAggregator API, this exception is thrown if the number
	// of accounts and aggregators exceeds the limit.
	ErrCodeLimitExceededException = "LimitExceededException"

	// ErrCodeMaxActiveResourcesExceededException for service response error code
	// "MaxActiveResourcesExceededException".
	//
	// You have reached the limit of active custom resource types in your account.
	// There is a limit of 100,000. Delete unused resources using DeleteResourceConfig
	// (https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteResourceConfig.html) .
	ErrCodeMaxActiveResourcesExceededException = "MaxActiveResourcesExceededException"

	// ErrCodeMaxNumberOfConfigRulesExceededException for service response error code
	// "MaxNumberOfConfigRulesExceededException".
	//
	// Failed to add the Config rule because the account already contains the maximum
	// number of 1000 rules. Consider deleting any deactivated rules before you
	// add new rules.
	ErrCodeMaxNumberOfConfigRulesExceededException = "MaxNumberOfConfigRulesExceededException"

	// ErrCodeMaxNumberOfConfigurationRecordersExceededException for service response error code
	// "MaxNumberOfConfigurationRecordersExceededException".
	//
	// You have reached the limit of the number of configuration recorders you can
	// create.
	ErrCodeMaxNumberOfConfigurationRecordersExceededException = "MaxNumberOfConfigurationRecordersExceededException"

	// ErrCodeMaxNumberOfConformancePacksExceededException for service response error code
	// "MaxNumberOfConformancePacksExceededException".
	//
	// You have reached the limit of the number of conformance packs you can create
	// in an account. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html)
	// in the Config Developer Guide.
	ErrCodeMaxNumberOfConformancePacksExceededException = "MaxNumberOfConformancePacksExceededException"

	// ErrCodeMaxNumberOfDeliveryChannelsExceededException for service response error code
	// "MaxNumberOfDeliveryChannelsExceededException".
	//
	// You have reached the limit of the number of delivery channels you can create.
	ErrCodeMaxNumberOfDeliveryChannelsExceededException = "MaxNumberOfDeliveryChannelsExceededException"

	// ErrCodeMaxNumberOfOrganizationConfigRulesExceededException for service response error code
	// "MaxNumberOfOrganizationConfigRulesExceededException".
	//
	// You have reached the limit of the number of organization Config rules you
	// can create. For more information, see see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html)
	// in the Config Developer Guide.
	ErrCodeMaxNumberOfOrganizationConfigRulesExceededException = "MaxNumberOfOrganizationConfigRulesExceededException"

	// ErrCodeMaxNumberOfOrganizationConformancePacksExceededException for service response error code
	// "MaxNumberOfOrganizationConformancePacksExceededException".
	//
	// You have reached the limit of the number of organization conformance packs
	// you can create in an account. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html)
	// in the Config Developer Guide.
	ErrCodeMaxNumberOfOrganizationConformancePacksExceededException = "MaxNumberOfOrganizationConformancePacksExceededException"

	// ErrCodeMaxNumberOfRetentionConfigurationsExceededException for service response error code
	// "MaxNumberOfRetentionConfigurationsExceededException".
	//
	// Failed to add the retention configuration because a retention configuration
	// with that name already exists.
	ErrCodeMaxNumberOfRetentionConfigurationsExceededException = "MaxNumberOfRetentionConfigurationsExceededException"

	// ErrCodeNoAvailableConfigurationRecorderException for service response error code
	// "NoAvailableConfigurationRecorderException".
	//
	// There are no configuration recorders available to provide the role needed
	// to describe your resources. Create a configuration recorder.
	ErrCodeNoAvailableConfigurationRecorderException = "NoAvailableConfigurationRecorderException"

	// ErrCodeNoAvailableDeliveryChannelException for service response error code
	// "NoAvailableDeliveryChannelException".
	//
	// There is no delivery channel available to record configurations.
	ErrCodeNoAvailableDeliveryChannelException = "NoAvailableDeliveryChannelException"

	// ErrCodeNoAvailableOrganizationException for service response error code
	// "NoAvailableOrganizationException".
	//
	// Organization is no longer available.
	ErrCodeNoAvailableOrganizationException = "NoAvailableOrganizationException"

	// ErrCodeNoRunningConfigurationRecorderException for service response error code
	// "NoRunningConfigurationRecorderException".
	//
	// There is no configuration recorder running.
	ErrCodeNoRunningConfigurationRecorderException = "NoRunningConfigurationRecorderException"

	// ErrCodeNoSuchBucketException for service response error code
	// "NoSuchBucketException".
	//
	// The specified Amazon S3 bucket does not exist.
	ErrCodeNoSuchBucketException = "NoSuchBucketException"

	// ErrCodeNoSuchConfigRuleException for service response error code
	// "NoSuchConfigRuleException".
	//
	// The Config rule in the request is not valid. Verify that the rule is an Config
	// Process Check rule, that the rule name is correct, and that valid Amazon
	// Resouce Names (ARNs) are used before trying again.
	ErrCodeNoSuchConfigRuleException = "NoSuchConfigRuleException"

	// ErrCodeNoSuchConfigRuleInConformancePackException for service response error code
	// "NoSuchConfigRuleInConformancePackException".
	//
	// Config rule that you passed in the filter does not exist.
	ErrCodeNoSuchConfigRuleInConformancePackException = "NoSuchConfigRuleInConformancePackException"

	// ErrCodeNoSuchConfigurationAggregatorException for service response error code
	// "NoSuchConfigurationAggregatorException".
	//
	// You have specified a configuration aggregator that does not exist.
	ErrCodeNoSuchConfigurationAggregatorException = "NoSuchConfigurationAggregatorException"

	// ErrCodeNoSuchConfigurationRecorderException for service response error code
	// "NoSuchConfigurationRecorderException".
	//
	// You have specified a configuration recorder that does not exist.
	ErrCodeNoSuchConfigurationRecorderException = "NoSuchConfigurationRecorderException"

	// ErrCodeNoSuchConformancePackException for service response error code
	// "NoSuchConformancePackException".
	//
	// You specified one or more conformance packs that do not exist.
	ErrCodeNoSuchConformancePackException = "NoSuchConformancePackException"

	// ErrCodeNoSuchDeliveryChannelException for service response error code
	// "NoSuchDeliveryChannelException".
	//
	// You have specified a delivery channel that does not exist.
	ErrCodeNoSuchDeliveryChannelException = "NoSuchDeliveryChannelException"

	// ErrCodeNoSuchOrganizationConfigRuleException for service response error code
	// "NoSuchOrganizationConfigRuleException".
	//
	// The Config rule in the request is not valid. Verify that the rule is an organization
	// Config Process Check rule, that the rule name is correct, and that valid
	// Amazon Resouce Names (ARNs) are used before trying again.
	ErrCodeNoSuchOrganizationConfigRuleException = "NoSuchOrganizationConfigRuleException"

	// ErrCodeNoSuchOrganizationConformancePackException for service response error code
	// "NoSuchOrganizationConformancePackException".
	//
	// Config organization conformance pack that you passed in the filter does not
	// exist.
	//
	// For DeleteOrganizationConformancePack, you tried to delete an organization
	// conformance pack that does not exist.
	ErrCodeNoSuchOrganizationConformancePackException = "NoSuchOrganizationConformancePackException"

	// ErrCodeNoSuchRemediationConfigurationException for service response error code
	// "NoSuchRemediationConfigurationException".
	//
	// You specified an Config rule without a remediation configuration.
	ErrCodeNoSuchRemediationConfigurationException = "NoSuchRemediationConfigurationException"

	// ErrCodeNoSuchRemediationExceptionException for service response error code
	// "NoSuchRemediationExceptionException".
	//
	// You tried to delete a remediation exception that does not exist.
	ErrCodeNoSuchRemediationExceptionException = "NoSuchRemediationExceptionException"

	// ErrCodeNoSuchRetentionConfigurationException for service response error code
	// "NoSuchRetentionConfigurationException".
	//
	// You have specified a retention configuration that does not exist.
	ErrCodeNoSuchRetentionConfigurationException = "NoSuchRetentionConfigurationException"

	// ErrCodeOrganizationAccessDeniedException for service response error code
	// "OrganizationAccessDeniedException".
	//
	// For PutConfigurationAggregator API, you can see this exception for the following
	// reasons:
	//
	//    * No permission to call EnableAWSServiceAccess API
	//
	//    * The configuration aggregator cannot be updated because your Amazon Web
	//    Services Organization management account or the delegated administrator
	//    role changed. Delete this aggregator and create a new one with the current
	//    Amazon Web Services Organization.
	//
	//    * The configuration aggregator is associated with a previous Amazon Web
	//    Services Organization and Config cannot aggregate data with current Amazon
	//    Web Services Organization. Delete this aggregator and create a new one
	//    with the current Amazon Web Services Organization.
	//
	//    * You are not a registered delegated administrator for Config with permissions
	//    to call ListDelegatedAdministrators API. Ensure that the management account
	//    registers delagated administrator for Config service principle name before
	//    the delegated administrator creates an aggregator.
	//
	// For all OrganizationConfigRule and OrganizationConformancePack APIs, Config
	// throws an exception if APIs are called from member accounts. All APIs must
	// be called from organization management account.
	ErrCodeOrganizationAccessDeniedException = "OrganizationAccessDeniedException"

	// ErrCodeOrganizationAllFeaturesNotEnabledException for service response error code
	// "OrganizationAllFeaturesNotEnabledException".
	//
	// Config resource cannot be created because your organization does not have
	// all features enabled.
	ErrCodeOrganizationAllFeaturesNotEnabledException = "OrganizationAllFeaturesNotEnabledException"

	// ErrCodeOrganizationConformancePackTemplateValidationException for service response error code
	// "OrganizationConformancePackTemplateValidationException".
	//
	// You have specified a template that is not valid or supported.
	ErrCodeOrganizationConformancePackTemplateValidationException = "OrganizationConformancePackTemplateValidationException"

	// ErrCodeOversizedConfigurationItemException for service response error code
	// "OversizedConfigurationItemException".
	//
	// The configuration item size is outside the allowable range.
	ErrCodeOversizedConfigurationItemException = "OversizedConfigurationItemException"

	// ErrCodeRemediationInProgressException for service response error code
	// "RemediationInProgressException".
	//
	// Remediation action is in progress. You can either cancel execution in Amazon
	// Web Services Systems Manager or wait and try again later.
	ErrCodeRemediationInProgressException = "RemediationInProgressException"

	// ErrCodeResourceConcurrentModificationException for service response error code
	// "ResourceConcurrentModificationException".
	//
	// Two users are trying to modify the same query at the same time. Wait for
	// a moment and try again.
	ErrCodeResourceConcurrentModificationException = "ResourceConcurrentModificationException"

	// ErrCodeResourceInUseException for service response error code
	// "ResourceInUseException".
	//
	// You see this exception in the following cases:
	//
	//    * For DeleteConfigRule, Config is deleting this rule. Try your request
	//    again later.
	//
	//    * For DeleteConfigRule, the rule is deleting your evaluation results.
	//    Try your request again later.
	//
	//    * For DeleteConfigRule, a remediation action is associated with the rule
	//    and Config cannot delete this rule. Delete the remediation action associated
	//    with the rule before deleting the rule and try your request again later.
	//
	//    * For PutConfigOrganizationRule, organization Config rule deletion is
	//    in progress. Try your request again later.
	//
	//    * For DeleteOrganizationConfigRule, organization Config rule creation
	//    is in progress. Try your request again later.
	//
	//    * For PutConformancePack and PutOrganizationConformancePack, a conformance
	//    pack creation, update, and deletion is in progress. Try your request again
	//    later.
	//
	//    * For DeleteConformancePack, a conformance pack creation, update, and
	//    deletion is in progress. Try your request again later.
	ErrCodeResourceInUseException = "ResourceInUseException"

	// ErrCodeResourceNotDiscoveredException for service response error code
	// "ResourceNotDiscoveredException".
	//
	// You have specified a resource that is either unknown or has not been discovered.
	ErrCodeResourceNotDiscoveredException = "ResourceNotDiscoveredException"

	// ErrCodeResourceNotFoundException for service response error code
	// "ResourceNotFoundException".
	//
	// You have specified a resource that does not exist.
	ErrCodeResourceNotFoundException = "ResourceNotFoundException"

	// ErrCodeTooManyTagsException for service response error code
	// "TooManyTagsException".
	//
	// You have reached the limit of the number of tags you can use. For more information,
	// see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html)
	// in the Config Developer Guide.
	ErrCodeTooManyTagsException = "TooManyTagsException"

	// ErrCodeValidationException for service response error code
	// "ValidationException".
	//
	// The requested action is not valid.
	//
	// For PutStoredQuery, you will see this exception if there are missing required
	// fields or if the input value fails the validation, or if you are trying to
	// create more than 300 queries.
	//
	// For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this
	// exception if there are missing required fields or if the input value fails
	// the validation.
	ErrCodeValidationException = "ValidationException"
)
View Source
const (
	ServiceName = "config"         // Name of service.
	EndpointsID = ServiceName      // ID to lookup a service endpoint with.
	ServiceID   = "Config Service" // ServiceID is a unique identifier of a specific service.
)

Service information constants

View Source
const (
	// EventSourceAwsConfig is a EventSource enum value
	EventSourceAwsConfig = "aws.config"
)
View Source
const (
	// RemediationTargetTypeSsmDocument is a RemediationTargetType enum value
	RemediationTargetTypeSsmDocument = "SSM_DOCUMENT"
)
View Source
const (
	// ResourceConfigurationSchemaTypeCfnResourceSchema is a ResourceConfigurationSchemaType enum value
	ResourceConfigurationSchemaTypeCfnResourceSchema = "CFN_RESOURCE_SCHEMA"
)
View Source
const (
	// ResourceValueTypeResourceId is a ResourceValueType enum value
	ResourceValueTypeResourceId = "RESOURCE_ID"
)
View Source
const (
	// SortByScore is a SortBy enum value
	SortByScore = "SCORE"
)

Variables

This section is empty.

Functions

func AggregateConformancePackComplianceSummaryGroupKey_Values added in v1.38.9

func AggregateConformancePackComplianceSummaryGroupKey_Values() []string

AggregateConformancePackComplianceSummaryGroupKey_Values returns all elements of the AggregateConformancePackComplianceSummaryGroupKey enum

func AggregatedSourceStatusType_Values added in v1.34.3

func AggregatedSourceStatusType_Values() []string

AggregatedSourceStatusType_Values returns all elements of the AggregatedSourceStatusType enum

func AggregatedSourceType_Values added in v1.34.3

func AggregatedSourceType_Values() []string

AggregatedSourceType_Values returns all elements of the AggregatedSourceType enum

func ChronologicalOrder_Values added in v1.34.3

func ChronologicalOrder_Values() []string

ChronologicalOrder_Values returns all elements of the ChronologicalOrder enum

func ComplianceType_Values added in v1.34.3

func ComplianceType_Values() []string

ComplianceType_Values returns all elements of the ComplianceType enum

func ConfigRuleComplianceSummaryGroupKey_Values added in v1.34.3

func ConfigRuleComplianceSummaryGroupKey_Values() []string

ConfigRuleComplianceSummaryGroupKey_Values returns all elements of the ConfigRuleComplianceSummaryGroupKey enum

func ConfigRuleState_Values added in v1.34.3

func ConfigRuleState_Values() []string

ConfigRuleState_Values returns all elements of the ConfigRuleState enum

func ConfigurationItemStatus_Values added in v1.34.3

func ConfigurationItemStatus_Values() []string

ConfigurationItemStatus_Values returns all elements of the ConfigurationItemStatus enum

func ConformancePackComplianceType_Values added in v1.34.3

func ConformancePackComplianceType_Values() []string

ConformancePackComplianceType_Values returns all elements of the ConformancePackComplianceType enum

func ConformancePackState_Values added in v1.34.3

func ConformancePackState_Values() []string

ConformancePackState_Values returns all elements of the ConformancePackState enum

func DeliveryStatus_Values added in v1.34.3

func DeliveryStatus_Values() []string

DeliveryStatus_Values returns all elements of the DeliveryStatus enum

func EvaluationMode_Values added in v1.44.147

func EvaluationMode_Values() []string

EvaluationMode_Values returns all elements of the EvaluationMode enum

func EventSource_Values added in v1.34.3

func EventSource_Values() []string

EventSource_Values returns all elements of the EventSource enum

func MaximumExecutionFrequency_Values added in v1.34.3

func MaximumExecutionFrequency_Values() []string

MaximumExecutionFrequency_Values returns all elements of the MaximumExecutionFrequency enum

func MemberAccountRuleStatus_Values added in v1.34.3

func MemberAccountRuleStatus_Values() []string

MemberAccountRuleStatus_Values returns all elements of the MemberAccountRuleStatus enum

func MessageType_Values added in v1.34.3

func MessageType_Values() []string

MessageType_Values returns all elements of the MessageType enum

func OrganizationConfigRuleTriggerTypeNoSN_Values added in v1.43.25

func OrganizationConfigRuleTriggerTypeNoSN_Values() []string

OrganizationConfigRuleTriggerTypeNoSN_Values returns all elements of the OrganizationConfigRuleTriggerTypeNoSN enum

func OrganizationConfigRuleTriggerType_Values added in v1.34.3

func OrganizationConfigRuleTriggerType_Values() []string

OrganizationConfigRuleTriggerType_Values returns all elements of the OrganizationConfigRuleTriggerType enum

func OrganizationResourceDetailedStatus_Values added in v1.34.3

func OrganizationResourceDetailedStatus_Values() []string

OrganizationResourceDetailedStatus_Values returns all elements of the OrganizationResourceDetailedStatus enum

func OrganizationResourceStatus_Values added in v1.34.3

func OrganizationResourceStatus_Values() []string

OrganizationResourceStatus_Values returns all elements of the OrganizationResourceStatus enum

func OrganizationRuleStatus_Values added in v1.34.3

func OrganizationRuleStatus_Values() []string

OrganizationRuleStatus_Values returns all elements of the OrganizationRuleStatus enum

func Owner_Values added in v1.34.3

func Owner_Values() []string

Owner_Values returns all elements of the Owner enum

func RecorderStatus_Values added in v1.34.3

func RecorderStatus_Values() []string

RecorderStatus_Values returns all elements of the RecorderStatus enum

func RecordingFrequency_Values added in v1.48.4

func RecordingFrequency_Values() []string

RecordingFrequency_Values returns all elements of the RecordingFrequency enum

func RecordingStrategyType_Values added in v1.44.273

func RecordingStrategyType_Values() []string

RecordingStrategyType_Values returns all elements of the RecordingStrategyType enum

func RemediationExecutionState_Values added in v1.34.3

func RemediationExecutionState_Values() []string

RemediationExecutionState_Values returns all elements of the RemediationExecutionState enum

func RemediationExecutionStepState_Values added in v1.34.3

func RemediationExecutionStepState_Values() []string

RemediationExecutionStepState_Values returns all elements of the RemediationExecutionStepState enum

func RemediationTargetType_Values added in v1.34.3

func RemediationTargetType_Values() []string

RemediationTargetType_Values returns all elements of the RemediationTargetType enum

func ResourceConfigurationSchemaType_Values added in v1.44.147

func ResourceConfigurationSchemaType_Values() []string

ResourceConfigurationSchemaType_Values returns all elements of the ResourceConfigurationSchemaType enum

func ResourceCountGroupKey_Values added in v1.34.3

func ResourceCountGroupKey_Values() []string

ResourceCountGroupKey_Values returns all elements of the ResourceCountGroupKey enum

func ResourceEvaluationStatus_Values added in v1.44.147

func ResourceEvaluationStatus_Values() []string

ResourceEvaluationStatus_Values returns all elements of the ResourceEvaluationStatus enum

func ResourceType_Values added in v1.34.3

func ResourceType_Values() []string

ResourceType_Values returns all elements of the ResourceType enum

func ResourceValueType_Values added in v1.34.3

func ResourceValueType_Values() []string

ResourceValueType_Values returns all elements of the ResourceValueType enum

func SortBy_Values added in v1.44.64

func SortBy_Values() []string

SortBy_Values returns all elements of the SortBy enum

func SortOrder_Values added in v1.44.64

func SortOrder_Values() []string

SortOrder_Values returns all elements of the SortOrder enum

Types

type AccountAggregationSource added in v1.13.28

type AccountAggregationSource struct {

	// The 12-digit account ID of the account being aggregated.
	//
	// AccountIds is a required field
	AccountIds []*string `min:"1" type:"list" required:"true"`

	// If true, aggregate existing Config regions and future regions.
	AllAwsRegions *bool `type:"boolean"`

	// The source regions being aggregated.
	AwsRegions []*string `min:"1" type:"list"`
	// contains filtered or unexported fields
}

A collection of accounts and regions.

func (AccountAggregationSource) GoString added in v1.13.28

func (s AccountAggregationSource) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AccountAggregationSource) SetAccountIds added in v1.13.28

SetAccountIds sets the AccountIds field's value.

func (*AccountAggregationSource) SetAllAwsRegions added in v1.13.28

func (s *AccountAggregationSource) SetAllAwsRegions(v bool) *AccountAggregationSource

SetAllAwsRegions sets the AllAwsRegions field's value.

func (*AccountAggregationSource) SetAwsRegions added in v1.13.28

SetAwsRegions sets the AwsRegions field's value.

func (AccountAggregationSource) String added in v1.13.28

func (s AccountAggregationSource) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AccountAggregationSource) Validate added in v1.13.28

func (s *AccountAggregationSource) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AggregateComplianceByConfigRule added in v1.13.28

type AggregateComplianceByConfigRule struct {

	// The 12-digit account ID of the source account.
	AccountId *string `type:"string"`

	// The source region from where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`

	// Indicates whether an Amazon Web Services resource or Config rule is compliant
	// and provides the number of contributors that affect the compliance.
	Compliance *Compliance `type:"structure"`

	// The name of the Config rule.
	ConfigRuleName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Indicates whether an Config rule is compliant based on account ID, region, compliance, and rule name.

A rule is compliant if all of the resources that the rule evaluated comply with it. It is noncompliant if any of these resources do not comply.

func (AggregateComplianceByConfigRule) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateComplianceByConfigRule) SetAccountId added in v1.13.28

SetAccountId sets the AccountId field's value.

func (*AggregateComplianceByConfigRule) SetAwsRegion added in v1.13.28

SetAwsRegion sets the AwsRegion field's value.

func (*AggregateComplianceByConfigRule) SetCompliance added in v1.13.28

SetCompliance sets the Compliance field's value.

func (*AggregateComplianceByConfigRule) SetConfigRuleName added in v1.13.28

SetConfigRuleName sets the ConfigRuleName field's value.

func (AggregateComplianceByConfigRule) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateComplianceByConformancePack added in v1.38.9

type AggregateComplianceByConformancePack struct {

	// The 12-digit Amazon Web Services account ID of the source account.
	AccountId *string `type:"string"`

	// The source Amazon Web Services Region from where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`

	// The compliance status of the conformance pack.
	Compliance *AggregateConformancePackCompliance `type:"structure"`

	// The name of the conformance pack.
	ConformancePackName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Provides aggregate compliance of the conformance pack. Indicates whether a conformance pack is compliant based on the name of the conformance pack, account ID, and region.

A conformance pack is compliant if all of the rules in a conformance packs are compliant. It is noncompliant if any of the rules are not compliant. The compliance status of a conformance pack is INSUFFICIENT_DATA only if all rules within a conformance pack cannot be evaluated due to insufficient data. If some of the rules in a conformance pack are compliant but the compliance status of other rules in that same conformance pack is INSUFFICIENT_DATA, the conformance pack shows compliant.

func (AggregateComplianceByConformancePack) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateComplianceByConformancePack) SetAccountId added in v1.38.9

SetAccountId sets the AccountId field's value.

func (*AggregateComplianceByConformancePack) SetAwsRegion added in v1.38.9

SetAwsRegion sets the AwsRegion field's value.

func (*AggregateComplianceByConformancePack) SetCompliance added in v1.38.9

SetCompliance sets the Compliance field's value.

func (*AggregateComplianceByConformancePack) SetConformancePackName added in v1.38.9

SetConformancePackName sets the ConformancePackName field's value.

func (AggregateComplianceByConformancePack) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateComplianceCount added in v1.13.28

type AggregateComplianceCount struct {

	// The number of compliant and noncompliant Config rules.
	ComplianceSummary *ComplianceSummary `type:"structure"`

	// The 12-digit account ID or region based on the GroupByKey value.
	GroupName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

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

func (AggregateComplianceCount) GoString added in v1.13.28

func (s AggregateComplianceCount) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateComplianceCount) SetComplianceSummary added in v1.13.28

SetComplianceSummary sets the ComplianceSummary field's value.

func (*AggregateComplianceCount) SetGroupName added in v1.13.28

SetGroupName sets the GroupName field's value.

func (AggregateComplianceCount) String added in v1.13.28

func (s AggregateComplianceCount) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateConformancePackCompliance added in v1.38.9

type AggregateConformancePackCompliance struct {

	// The compliance status of the conformance pack.
	ComplianceType *string `type:"string" enum:"ConformancePackComplianceType"`

	// The number of compliant Config Rules.
	CompliantRuleCount *int64 `type:"integer"`

	// The number of noncompliant Config Rules.
	NonCompliantRuleCount *int64 `type:"integer"`

	// Total number of compliant rules, noncompliant rules, and the rules that do
	// not have any applicable resources to evaluate upon resulting in insufficient
	// data.
	TotalRuleCount *int64 `type:"integer"`
	// contains filtered or unexported fields
}

Provides the number of compliant and noncompliant rules within a conformance pack. Also provides the compliance status of the conformance pack and the total rule count which includes compliant rules, noncompliant rules, and rules that cannot be evaluated due to insufficient data.

A conformance pack is compliant if all of the rules in a conformance packs are compliant. It is noncompliant if any of the rules are not compliant. The compliance status of a conformance pack is INSUFFICIENT_DATA only if all rules within a conformance pack cannot be evaluated due to insufficient data. If some of the rules in a conformance pack are compliant but the compliance status of other rules in that same conformance pack is INSUFFICIENT_DATA, the conformance pack shows compliant.

func (AggregateConformancePackCompliance) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackCompliance) SetComplianceType added in v1.38.9

SetComplianceType sets the ComplianceType field's value.

func (*AggregateConformancePackCompliance) SetCompliantRuleCount added in v1.38.9

SetCompliantRuleCount sets the CompliantRuleCount field's value.

func (*AggregateConformancePackCompliance) SetNonCompliantRuleCount added in v1.38.9

SetNonCompliantRuleCount sets the NonCompliantRuleCount field's value.

func (*AggregateConformancePackCompliance) SetTotalRuleCount added in v1.38.9

SetTotalRuleCount sets the TotalRuleCount field's value.

func (AggregateConformancePackCompliance) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateConformancePackComplianceCount added in v1.38.9

type AggregateConformancePackComplianceCount struct {

	// Number of compliant conformance packs.
	CompliantConformancePackCount *int64 `type:"integer"`

	// Number of noncompliant conformance packs.
	NonCompliantConformancePackCount *int64 `type:"integer"`
	// contains filtered or unexported fields
}

The number of conformance packs that are compliant and noncompliant.

func (AggregateConformancePackComplianceCount) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackComplianceCount) SetCompliantConformancePackCount added in v1.38.9

SetCompliantConformancePackCount sets the CompliantConformancePackCount field's value.

func (*AggregateConformancePackComplianceCount) SetNonCompliantConformancePackCount added in v1.38.9

SetNonCompliantConformancePackCount sets the NonCompliantConformancePackCount field's value.

func (AggregateConformancePackComplianceCount) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateConformancePackComplianceFilters added in v1.38.9

type AggregateConformancePackComplianceFilters struct {

	// The 12-digit Amazon Web Services account ID of the source account.
	AccountId *string `type:"string"`

	// The source Amazon Web Services Region from where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`

	// The compliance status of the conformance pack.
	ComplianceType *string `type:"string" enum:"ConformancePackComplianceType"`

	// The name of the conformance pack.
	ConformancePackName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Filters the conformance packs based on an account ID, region, compliance type, and the name of the conformance pack.

func (AggregateConformancePackComplianceFilters) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackComplianceFilters) SetAccountId added in v1.38.9

SetAccountId sets the AccountId field's value.

func (*AggregateConformancePackComplianceFilters) SetAwsRegion added in v1.38.9

SetAwsRegion sets the AwsRegion field's value.

func (*AggregateConformancePackComplianceFilters) SetComplianceType added in v1.38.9

SetComplianceType sets the ComplianceType field's value.

func (*AggregateConformancePackComplianceFilters) SetConformancePackName added in v1.38.9

SetConformancePackName sets the ConformancePackName field's value.

func (AggregateConformancePackComplianceFilters) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackComplianceFilters) Validate added in v1.38.9

Validate inspects the fields of the type to determine if they are valid.

type AggregateConformancePackComplianceSummary added in v1.38.9

type AggregateConformancePackComplianceSummary struct {

	// Returns an AggregateConformancePackComplianceCount object.
	ComplianceSummary *AggregateConformancePackComplianceCount `type:"structure"`

	// Groups the result based on Amazon Web Services account ID or Amazon Web Services
	// Region.
	GroupName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Provides a summary of compliance based on either account ID or region.

func (AggregateConformancePackComplianceSummary) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackComplianceSummary) SetComplianceSummary added in v1.38.9

SetComplianceSummary sets the ComplianceSummary field's value.

func (*AggregateConformancePackComplianceSummary) SetGroupName added in v1.38.9

SetGroupName sets the GroupName field's value.

func (AggregateConformancePackComplianceSummary) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateConformancePackComplianceSummaryFilters added in v1.38.9

type AggregateConformancePackComplianceSummaryFilters struct {

	// The 12-digit Amazon Web Services account ID of the source account.
	AccountId *string `type:"string"`

	// The source Amazon Web Services Region from where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Filters the results based on account ID and region.

func (AggregateConformancePackComplianceSummaryFilters) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackComplianceSummaryFilters) SetAccountId added in v1.38.9

SetAccountId sets the AccountId field's value.

func (*AggregateConformancePackComplianceSummaryFilters) SetAwsRegion added in v1.38.9

SetAwsRegion sets the AwsRegion field's value.

func (AggregateConformancePackComplianceSummaryFilters) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateConformancePackComplianceSummaryFilters) Validate added in v1.38.9

Validate inspects the fields of the type to determine if they are valid.

type AggregateEvaluationResult added in v1.13.28

type AggregateEvaluationResult struct {

	// The 12-digit account ID of the source account.
	AccountId *string `type:"string"`

	// Supplementary information about how the agrregate evaluation determined the
	// compliance.
	Annotation *string `min:"1" type:"string"`

	// The source region from where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`

	// The resource compliance status.
	//
	// For the AggregationEvaluationResult data type, Config supports only the COMPLIANT
	// and NON_COMPLIANT. Config does not support the NOT_APPLICABLE and INSUFFICIENT_DATA
	// value.
	ComplianceType *string `type:"string" enum:"ComplianceType"`

	// The time when the Config rule evaluated the Amazon Web Services resource.
	ConfigRuleInvokedTime *time.Time `type:"timestamp"`

	// Uniquely identifies the evaluation result.
	EvaluationResultIdentifier *EvaluationResultIdentifier `type:"structure"`

	// The time when Config recorded the aggregate evaluation result.
	ResultRecordedTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

The details of an Config evaluation for an account ID and region in an aggregator. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information.

func (AggregateEvaluationResult) GoString added in v1.13.28

func (s AggregateEvaluationResult) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateEvaluationResult) SetAccountId added in v1.13.28

SetAccountId sets the AccountId field's value.

func (*AggregateEvaluationResult) SetAnnotation added in v1.13.28

SetAnnotation sets the Annotation field's value.

func (*AggregateEvaluationResult) SetAwsRegion added in v1.13.28

SetAwsRegion sets the AwsRegion field's value.

func (*AggregateEvaluationResult) SetComplianceType added in v1.13.28

SetComplianceType sets the ComplianceType field's value.

func (*AggregateEvaluationResult) SetConfigRuleInvokedTime added in v1.13.28

func (s *AggregateEvaluationResult) SetConfigRuleInvokedTime(v time.Time) *AggregateEvaluationResult

SetConfigRuleInvokedTime sets the ConfigRuleInvokedTime field's value.

func (*AggregateEvaluationResult) SetEvaluationResultIdentifier added in v1.13.28

SetEvaluationResultIdentifier sets the EvaluationResultIdentifier field's value.

func (*AggregateEvaluationResult) SetResultRecordedTime added in v1.13.28

func (s *AggregateEvaluationResult) SetResultRecordedTime(v time.Time) *AggregateEvaluationResult

SetResultRecordedTime sets the ResultRecordedTime field's value.

func (AggregateEvaluationResult) String added in v1.13.28

func (s AggregateEvaluationResult) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregateResourceIdentifier added in v1.15.79

type AggregateResourceIdentifier struct {

	// The ID of the Amazon Web Services resource.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`

	// The name of the Amazon Web Services resource.
	ResourceName *string `type:"string"`

	// The type of the Amazon Web Services resource.
	//
	// ResourceType is a required field
	ResourceType *string `type:"string" required:"true" enum:"ResourceType"`

	// The 12-digit account ID of the source account.
	//
	// SourceAccountId is a required field
	SourceAccountId *string `type:"string" required:"true"`

	// The source region where data is aggregated.
	//
	// SourceRegion is a required field
	SourceRegion *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region.

func (AggregateResourceIdentifier) GoString added in v1.15.79

func (s AggregateResourceIdentifier) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateResourceIdentifier) SetResourceId added in v1.15.79

SetResourceId sets the ResourceId field's value.

func (*AggregateResourceIdentifier) SetResourceName added in v1.15.79

SetResourceName sets the ResourceName field's value.

func (*AggregateResourceIdentifier) SetResourceType added in v1.15.79

SetResourceType sets the ResourceType field's value.

func (*AggregateResourceIdentifier) SetSourceAccountId added in v1.15.79

SetSourceAccountId sets the SourceAccountId field's value.

func (*AggregateResourceIdentifier) SetSourceRegion added in v1.15.79

SetSourceRegion sets the SourceRegion field's value.

func (AggregateResourceIdentifier) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregateResourceIdentifier) Validate added in v1.15.79

func (s *AggregateResourceIdentifier) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AggregatedSourceStatus added in v1.13.28

type AggregatedSourceStatus struct {

	// The region authorized to collect aggregated data.
	AwsRegion *string `min:"1" type:"string"`

	// The error code that Config returned when the source account aggregation last
	// failed.
	LastErrorCode *string `type:"string"`

	// The message indicating that the source account aggregation failed due to
	// an error.
	LastErrorMessage *string `type:"string"`

	// Filters the last updated status type.
	//
	//    * Valid value FAILED indicates errors while moving data.
	//
	//    * Valid value SUCCEEDED indicates the data was successfully moved.
	//
	//    * Valid value OUTDATED indicates the data is not the most recent.
	LastUpdateStatus *string `type:"string" enum:"AggregatedSourceStatusType"`

	// The time of the last update.
	LastUpdateTime *time.Time `type:"timestamp"`

	// The source account ID or an organization.
	SourceId *string `type:"string"`

	// The source account or an organization.
	SourceType *string `type:"string" enum:"AggregatedSourceType"`
	// contains filtered or unexported fields
}

The current sync status between the source and the aggregator account.

func (AggregatedSourceStatus) GoString added in v1.13.28

func (s AggregatedSourceStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregatedSourceStatus) SetAwsRegion added in v1.13.28

SetAwsRegion sets the AwsRegion field's value.

func (*AggregatedSourceStatus) SetLastErrorCode added in v1.13.28

func (s *AggregatedSourceStatus) SetLastErrorCode(v string) *AggregatedSourceStatus

SetLastErrorCode sets the LastErrorCode field's value.

func (*AggregatedSourceStatus) SetLastErrorMessage added in v1.13.28

func (s *AggregatedSourceStatus) SetLastErrorMessage(v string) *AggregatedSourceStatus

SetLastErrorMessage sets the LastErrorMessage field's value.

func (*AggregatedSourceStatus) SetLastUpdateStatus added in v1.13.28

func (s *AggregatedSourceStatus) SetLastUpdateStatus(v string) *AggregatedSourceStatus

SetLastUpdateStatus sets the LastUpdateStatus field's value.

func (*AggregatedSourceStatus) SetLastUpdateTime added in v1.13.28

func (s *AggregatedSourceStatus) SetLastUpdateTime(v time.Time) *AggregatedSourceStatus

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*AggregatedSourceStatus) SetSourceId added in v1.13.28

SetSourceId sets the SourceId field's value.

func (*AggregatedSourceStatus) SetSourceType added in v1.13.28

SetSourceType sets the SourceType field's value.

func (AggregatedSourceStatus) String added in v1.13.28

func (s AggregatedSourceStatus) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AggregationAuthorization added in v1.13.28

type AggregationAuthorization struct {

	// The Amazon Resource Name (ARN) of the aggregation object.
	AggregationAuthorizationArn *string `type:"string"`

	// The 12-digit account ID of the account authorized to aggregate data.
	AuthorizedAccountId *string `type:"string"`

	// The region authorized to collect aggregated data.
	AuthorizedAwsRegion *string `min:"1" type:"string"`

	// The time stamp when the aggregation authorization was created.
	CreationTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

An object that represents the authorizations granted to aggregator accounts and regions.

func (AggregationAuthorization) GoString added in v1.13.28

func (s AggregationAuthorization) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AggregationAuthorization) SetAggregationAuthorizationArn added in v1.13.28

func (s *AggregationAuthorization) SetAggregationAuthorizationArn(v string) *AggregationAuthorization

SetAggregationAuthorizationArn sets the AggregationAuthorizationArn field's value.

func (*AggregationAuthorization) SetAuthorizedAccountId added in v1.13.28

func (s *AggregationAuthorization) SetAuthorizedAccountId(v string) *AggregationAuthorization

SetAuthorizedAccountId sets the AuthorizedAccountId field's value.

func (*AggregationAuthorization) SetAuthorizedAwsRegion added in v1.13.28

func (s *AggregationAuthorization) SetAuthorizedAwsRegion(v string) *AggregationAuthorization

SetAuthorizedAwsRegion sets the AuthorizedAwsRegion field's value.

func (*AggregationAuthorization) SetCreationTime added in v1.13.28

SetCreationTime sets the CreationTime field's value.

func (AggregationAuthorization) String added in v1.13.28

func (s AggregationAuthorization) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BaseConfigurationItem added in v1.13.17

type BaseConfigurationItem struct {

	// The 12-digit Amazon Web Services account ID associated with the resource.
	AccountId *string `locationName:"accountId" type:"string"`

	// The Amazon Resource Name (ARN) of the resource.
	Arn *string `locationName:"arn" type:"string"`

	// The Availability Zone associated with the resource.
	AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

	// The region where the resource resides.
	AwsRegion *string `locationName:"awsRegion" min:"1" type:"string"`

	// The description of the resource configuration.
	Configuration *string `locationName:"configuration" type:"string"`

	// The time when the recording of configuration changes was initiated for the
	// resource.
	ConfigurationItemCaptureTime *time.Time `locationName:"configurationItemCaptureTime" type:"timestamp"`

	// The time when configuration changes for the resource were delivered.
	//
	// This field is optional and is not guaranteed to be present in a configuration
	// item (CI). If you are using daily recording, this field will be populated.
	// However, if you are using continuous recording, this field will be omitted
	// since the delivery time is instantaneous as the CI is available right away.
	// For more information on daily recording and continuous recording, see Recording
	// Frequency (https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-recording-frequency)
	// in the Config Developer Guide.
	ConfigurationItemDeliveryTime *time.Time `locationName:"configurationItemDeliveryTime" type:"timestamp"`

	// The configuration item status. Valid values include:
	//
	//    * OK – The resource configuration has been updated.
	//
	//    * ResourceDiscovered – The resource was newly discovered.
	//
	//    * ResourceNotRecorded – The resource was discovered, but its configuration
	//    was not recorded since the recorder doesn't record resources of this type.
	//
	//    * ResourceDeleted – The resource was deleted
	//
	//    * ResourceDeletedNotRecorded – The resource was deleted, but its configuration
	//    was not recorded since the recorder doesn't record resources of this type.
	ConfigurationItemStatus *string `locationName:"configurationItemStatus" type:"string" enum:"ConfigurationItemStatus"`

	// An identifier that indicates the ordering of the configuration items of a
	// resource.
	ConfigurationStateId *string `locationName:"configurationStateId" type:"string"`

	// The recording frequency that Config uses to record configuration changes
	// for the resource.
	RecordingFrequency *string `locationName:"recordingFrequency" type:"string" enum:"RecordingFrequency"`

	// The time stamp when the resource was created.
	ResourceCreationTime *time.Time `locationName:"resourceCreationTime" type:"timestamp"`

	// The ID of the resource (for example., sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" min:"1" type:"string"`

	// The custom name of the resource, if available.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of Amazon Web Services resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`

	// Configuration attributes that Config returns for certain resource types to
	// supplement the information returned for the configuration parameter.
	SupplementaryConfiguration map[string]*string `locationName:"supplementaryConfiguration" type:"map"`

	// The version number of the resource configuration.
	Version *string `locationName:"version" type:"string"`
	// contains filtered or unexported fields
}

The detailed configurations of a specified resource.

func (BaseConfigurationItem) GoString added in v1.13.17

func (s BaseConfigurationItem) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BaseConfigurationItem) SetAccountId added in v1.13.17

SetAccountId sets the AccountId field's value.

func (*BaseConfigurationItem) SetArn added in v1.13.17

SetArn sets the Arn field's value.

func (*BaseConfigurationItem) SetAvailabilityZone added in v1.13.17

func (s *BaseConfigurationItem) SetAvailabilityZone(v string) *BaseConfigurationItem

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*BaseConfigurationItem) SetAwsRegion added in v1.13.17

SetAwsRegion sets the AwsRegion field's value.

func (*BaseConfigurationItem) SetConfiguration added in v1.13.17

func (s *BaseConfigurationItem) SetConfiguration(v string) *BaseConfigurationItem

SetConfiguration sets the Configuration field's value.

func (*BaseConfigurationItem) SetConfigurationItemCaptureTime added in v1.13.17

func (s *BaseConfigurationItem) SetConfigurationItemCaptureTime(v time.Time) *BaseConfigurationItem

SetConfigurationItemCaptureTime sets the ConfigurationItemCaptureTime field's value.

func (*BaseConfigurationItem) SetConfigurationItemDeliveryTime added in v1.48.4

func (s *BaseConfigurationItem) SetConfigurationItemDeliveryTime(v time.Time) *BaseConfigurationItem

SetConfigurationItemDeliveryTime sets the ConfigurationItemDeliveryTime field's value.

func (*BaseConfigurationItem) SetConfigurationItemStatus added in v1.13.17

func (s *BaseConfigurationItem) SetConfigurationItemStatus(v string) *BaseConfigurationItem

SetConfigurationItemStatus sets the ConfigurationItemStatus field's value.

func (*BaseConfigurationItem) SetConfigurationStateId added in v1.13.17

func (s *BaseConfigurationItem) SetConfigurationStateId(v string) *BaseConfigurationItem

SetConfigurationStateId sets the ConfigurationStateId field's value.

func (*BaseConfigurationItem) SetRecordingFrequency added in v1.48.4

func (s *BaseConfigurationItem) SetRecordingFrequency(v string) *BaseConfigurationItem

SetRecordingFrequency sets the RecordingFrequency field's value.

func (*BaseConfigurationItem) SetResourceCreationTime added in v1.13.17

func (s *BaseConfigurationItem) SetResourceCreationTime(v time.Time) *BaseConfigurationItem

SetResourceCreationTime sets the ResourceCreationTime field's value.

func (*BaseConfigurationItem) SetResourceId added in v1.13.17

func (s *BaseConfigurationItem) SetResourceId(v string) *BaseConfigurationItem

SetResourceId sets the ResourceId field's value.

func (*BaseConfigurationItem) SetResourceName added in v1.13.17

func (s *BaseConfigurationItem) SetResourceName(v string) *BaseConfigurationItem

SetResourceName sets the ResourceName field's value.

func (*BaseConfigurationItem) SetResourceType added in v1.13.17

func (s *BaseConfigurationItem) SetResourceType(v string) *BaseConfigurationItem

SetResourceType sets the ResourceType field's value.

func (*BaseConfigurationItem) SetSupplementaryConfiguration added in v1.13.17

func (s *BaseConfigurationItem) SetSupplementaryConfiguration(v map[string]*string) *BaseConfigurationItem

SetSupplementaryConfiguration sets the SupplementaryConfiguration field's value.

func (*BaseConfigurationItem) SetVersion added in v1.13.17

SetVersion sets the Version field's value.

func (BaseConfigurationItem) String added in v1.13.17

func (s BaseConfigurationItem) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetAggregateResourceConfigInput added in v1.15.79

type BatchGetAggregateResourceConfigInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// A list of aggregate ResourceIdentifiers objects.
	//
	// ResourceIdentifiers is a required field
	ResourceIdentifiers []*AggregateResourceIdentifier `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (BatchGetAggregateResourceConfigInput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetAggregateResourceConfigInput) SetConfigurationAggregatorName added in v1.15.79

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*BatchGetAggregateResourceConfigInput) SetResourceIdentifiers added in v1.15.79

SetResourceIdentifiers sets the ResourceIdentifiers field's value.

func (BatchGetAggregateResourceConfigInput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetAggregateResourceConfigInput) Validate added in v1.15.79

Validate inspects the fields of the type to determine if they are valid.

type BatchGetAggregateResourceConfigOutput added in v1.15.79

type BatchGetAggregateResourceConfigOutput struct {

	// A list that contains the current configuration of one or more resources.
	BaseConfigurationItems []*BaseConfigurationItem `type:"list"`

	// A list of resource identifiers that were not processed with current scope.
	// The list is empty if all the resources are processed.
	UnprocessedResourceIdentifiers []*AggregateResourceIdentifier `type:"list"`
	// contains filtered or unexported fields
}

func (BatchGetAggregateResourceConfigOutput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetAggregateResourceConfigOutput) SetBaseConfigurationItems added in v1.15.79

SetBaseConfigurationItems sets the BaseConfigurationItems field's value.

func (*BatchGetAggregateResourceConfigOutput) SetUnprocessedResourceIdentifiers added in v1.15.79

SetUnprocessedResourceIdentifiers sets the UnprocessedResourceIdentifiers field's value.

func (BatchGetAggregateResourceConfigOutput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type BatchGetResourceConfigInput added in v1.13.17

type BatchGetResourceConfigInput struct {

	// A list of resource keys to be processed with the current request. Each element
	// in the list consists of the resource type and resource ID.
	//
	// ResourceKeys is a required field
	ResourceKeys []*ResourceKey `locationName:"resourceKeys" min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (BatchGetResourceConfigInput) GoString added in v1.13.17

func (s BatchGetResourceConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetResourceConfigInput) SetResourceKeys added in v1.13.17

SetResourceKeys sets the ResourceKeys field's value.

func (BatchGetResourceConfigInput) String added in v1.13.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetResourceConfigInput) Validate added in v1.13.17

func (s *BatchGetResourceConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetResourceConfigOutput added in v1.13.17

type BatchGetResourceConfigOutput struct {

	// A list that contains the current configuration of one or more resources.
	BaseConfigurationItems []*BaseConfigurationItem `locationName:"baseConfigurationItems" type:"list"`

	// A list of resource keys that were not processed with the current response.
	// The unprocessesResourceKeys value is in the same form as ResourceKeys, so
	// the value can be directly provided to a subsequent BatchGetResourceConfig
	// operation. If there are no unprocessed resource keys, the response contains
	// an empty unprocessedResourceKeys list.
	UnprocessedResourceKeys []*ResourceKey `locationName:"unprocessedResourceKeys" min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (BatchGetResourceConfigOutput) GoString added in v1.13.17

func (s BatchGetResourceConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BatchGetResourceConfigOutput) SetBaseConfigurationItems added in v1.13.17

SetBaseConfigurationItems sets the BaseConfigurationItems field's value.

func (*BatchGetResourceConfigOutput) SetUnprocessedResourceKeys added in v1.13.17

func (s *BatchGetResourceConfigOutput) SetUnprocessedResourceKeys(v []*ResourceKey) *BatchGetResourceConfigOutput

SetUnprocessedResourceKeys sets the UnprocessedResourceKeys field's value.

func (BatchGetResourceConfigOutput) String added in v1.13.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Compliance added in v0.9.13

type Compliance struct {

	// The number of Amazon Web Services resources or Config rules that cause a
	// result of NON_COMPLIANT, up to a maximum number.
	ComplianceContributorCount *ComplianceContributorCount `type:"structure"`

	// Indicates whether an Amazon Web Services resource or Config rule is compliant.
	//
	// A resource is compliant if it complies with all of the Config rules that
	// evaluate it. A resource is noncompliant if it does not comply with one or
	// more of these rules.
	//
	// A rule is compliant if all of the resources that the rule evaluates comply
	// with it. A rule is noncompliant if any of these resources do not comply.
	//
	// Config returns the INSUFFICIENT_DATA value when no evaluation results are
	// available for the Amazon Web Services resource or Config rule.
	//
	// For the Compliance data type, Config supports only COMPLIANT, NON_COMPLIANT,
	// and INSUFFICIENT_DATA values. Config does not support the NOT_APPLICABLE
	// value for the Compliance data type.
	ComplianceType *string `type:"string" enum:"ComplianceType"`
	// contains filtered or unexported fields
}

Indicates whether an Amazon Web Services resource or Config rule is compliant and provides the number of contributors that affect the compliance.

func (Compliance) GoString added in v0.9.13

func (s Compliance) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Compliance) SetComplianceContributorCount added in v1.5.0

func (s *Compliance) SetComplianceContributorCount(v *ComplianceContributorCount) *Compliance

SetComplianceContributorCount sets the ComplianceContributorCount field's value.

func (*Compliance) SetComplianceType added in v1.5.0

func (s *Compliance) SetComplianceType(v string) *Compliance

SetComplianceType sets the ComplianceType field's value.

func (Compliance) String added in v0.9.13

func (s Compliance) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ComplianceByConfigRule added in v0.9.13

type ComplianceByConfigRule struct {

	// Indicates whether the Config rule is compliant.
	Compliance *Compliance `type:"structure"`

	// The name of the Config rule.
	ConfigRuleName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Indicates whether an Config rule is compliant. A rule is compliant if all of the resources that the rule evaluated comply with it. A rule is noncompliant if any of these resources do not comply.

func (ComplianceByConfigRule) GoString added in v0.9.13

func (s ComplianceByConfigRule) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ComplianceByConfigRule) SetCompliance added in v1.5.0

SetCompliance sets the Compliance field's value.

func (*ComplianceByConfigRule) SetConfigRuleName added in v1.5.0

func (s *ComplianceByConfigRule) SetConfigRuleName(v string) *ComplianceByConfigRule

SetConfigRuleName sets the ConfigRuleName field's value.

func (ComplianceByConfigRule) String added in v0.9.13

func (s ComplianceByConfigRule) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ComplianceByResource added in v0.9.13

type ComplianceByResource struct {

	// Indicates whether the Amazon Web Services resource complies with all of the
	// Config rules that evaluated it.
	Compliance *Compliance `type:"structure"`

	// The ID of the Amazon Web Services resource that was evaluated.
	ResourceId *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource that was evaluated.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Indicates whether an Amazon Web Services resource that is evaluated according to one or more Config rules is compliant. A resource is compliant if it complies with all of the rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules.

func (ComplianceByResource) GoString added in v0.9.13

func (s ComplianceByResource) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ComplianceByResource) SetCompliance added in v1.5.0

SetCompliance sets the Compliance field's value.

func (*ComplianceByResource) SetResourceId added in v1.5.0

func (s *ComplianceByResource) SetResourceId(v string) *ComplianceByResource

SetResourceId sets the ResourceId field's value.

func (*ComplianceByResource) SetResourceType added in v1.5.0

func (s *ComplianceByResource) SetResourceType(v string) *ComplianceByResource

SetResourceType sets the ResourceType field's value.

func (ComplianceByResource) String added in v0.9.13

func (s ComplianceByResource) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ComplianceContributorCount added in v0.9.13

type ComplianceContributorCount struct {

	// Indicates whether the maximum count is reached.
	CapExceeded *bool `type:"boolean"`

	// The number of Amazon Web Services resources or Config rules responsible for
	// the current compliance of the item.
	CappedCount *int64 `type:"integer"`
	// contains filtered or unexported fields
}

The number of Amazon Web Services resources or Config rules responsible for the current compliance of the item, up to a maximum number.

func (ComplianceContributorCount) GoString added in v0.9.13

func (s ComplianceContributorCount) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ComplianceContributorCount) SetCapExceeded added in v1.5.0

SetCapExceeded sets the CapExceeded field's value.

func (*ComplianceContributorCount) SetCappedCount added in v1.5.0

SetCappedCount sets the CappedCount field's value.

func (ComplianceContributorCount) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ComplianceSummary added in v0.9.13

type ComplianceSummary struct {

	// The time that Config created the compliance summary.
	ComplianceSummaryTimestamp *time.Time `type:"timestamp"`

	// The number of Config rules or Amazon Web Services resources that are compliant,
	// up to a maximum of 25 for rules and 100 for resources.
	CompliantResourceCount *ComplianceContributorCount `type:"structure"`

	// The number of Config rules or Amazon Web Services resources that are noncompliant,
	// up to a maximum of 25 for rules and 100 for resources.
	NonCompliantResourceCount *ComplianceContributorCount `type:"structure"`
	// contains filtered or unexported fields
}

The number of Config rules or Amazon Web Services resources that are compliant and noncompliant.

func (ComplianceSummary) GoString added in v0.9.13

func (s ComplianceSummary) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ComplianceSummary) SetComplianceSummaryTimestamp added in v1.5.0

func (s *ComplianceSummary) SetComplianceSummaryTimestamp(v time.Time) *ComplianceSummary

SetComplianceSummaryTimestamp sets the ComplianceSummaryTimestamp field's value.

func (*ComplianceSummary) SetCompliantResourceCount added in v1.5.0

func (s *ComplianceSummary) SetCompliantResourceCount(v *ComplianceContributorCount) *ComplianceSummary

SetCompliantResourceCount sets the CompliantResourceCount field's value.

func (*ComplianceSummary) SetNonCompliantResourceCount added in v1.5.0

func (s *ComplianceSummary) SetNonCompliantResourceCount(v *ComplianceContributorCount) *ComplianceSummary

SetNonCompliantResourceCount sets the NonCompliantResourceCount field's value.

func (ComplianceSummary) String added in v0.9.13

func (s ComplianceSummary) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ComplianceSummaryByResourceType added in v0.9.13

type ComplianceSummaryByResourceType struct {

	// The number of Amazon Web Services resources that are compliant or noncompliant,
	// up to a maximum of 100 for each.
	ComplianceSummary *ComplianceSummary `type:"structure"`

	// The type of Amazon Web Services resource.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

The number of Amazon Web Services resources of a specific type that are compliant or noncompliant, up to a maximum of 100 for each.

func (ComplianceSummaryByResourceType) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ComplianceSummaryByResourceType) SetComplianceSummary added in v1.5.0

SetComplianceSummary sets the ComplianceSummary field's value.

func (*ComplianceSummaryByResourceType) SetResourceType added in v1.5.0

SetResourceType sets the ResourceType field's value.

func (ComplianceSummaryByResourceType) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigExportDeliveryInfo

type ConfigExportDeliveryInfo struct {

	// The time of the last attempted delivery.
	LastAttemptTime *time.Time `locationName:"lastAttemptTime" type:"timestamp"`

	// The error code from the last attempted delivery.
	LastErrorCode *string `locationName:"lastErrorCode" type:"string"`

	// The error message from the last attempted delivery.
	LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`

	// Status of the last attempted delivery.
	LastStatus *string `locationName:"lastStatus" type:"string" enum:"DeliveryStatus"`

	// The time of the last successful delivery.
	LastSuccessfulTime *time.Time `locationName:"lastSuccessfulTime" type:"timestamp"`

	// The time that the next delivery occurs.
	NextDeliveryTime *time.Time `locationName:"nextDeliveryTime" type:"timestamp"`
	// contains filtered or unexported fields
}

Provides status of the delivery of the snapshot or the configuration history to the specified Amazon S3 bucket. Also provides the status of notifications about the Amazon S3 delivery to the specified Amazon SNS topic.

func (ConfigExportDeliveryInfo) GoString added in v0.6.5

func (s ConfigExportDeliveryInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigExportDeliveryInfo) SetLastAttemptTime added in v1.5.0

func (s *ConfigExportDeliveryInfo) SetLastAttemptTime(v time.Time) *ConfigExportDeliveryInfo

SetLastAttemptTime sets the LastAttemptTime field's value.

func (*ConfigExportDeliveryInfo) SetLastErrorCode added in v1.5.0

SetLastErrorCode sets the LastErrorCode field's value.

func (*ConfigExportDeliveryInfo) SetLastErrorMessage added in v1.5.0

func (s *ConfigExportDeliveryInfo) SetLastErrorMessage(v string) *ConfigExportDeliveryInfo

SetLastErrorMessage sets the LastErrorMessage field's value.

func (*ConfigExportDeliveryInfo) SetLastStatus added in v1.5.0

SetLastStatus sets the LastStatus field's value.

func (*ConfigExportDeliveryInfo) SetLastSuccessfulTime added in v1.5.0

func (s *ConfigExportDeliveryInfo) SetLastSuccessfulTime(v time.Time) *ConfigExportDeliveryInfo

SetLastSuccessfulTime sets the LastSuccessfulTime field's value.

func (*ConfigExportDeliveryInfo) SetNextDeliveryTime added in v1.5.0

func (s *ConfigExportDeliveryInfo) SetNextDeliveryTime(v time.Time) *ConfigExportDeliveryInfo

SetNextDeliveryTime sets the NextDeliveryTime field's value.

func (ConfigExportDeliveryInfo) String added in v0.6.5

func (s ConfigExportDeliveryInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigRule added in v0.9.13

type ConfigRule struct {

	// The Amazon Resource Name (ARN) of the Config rule.
	ConfigRuleArn *string `min:"1" type:"string"`

	// The ID of the Config rule.
	ConfigRuleId *string `min:"1" type:"string"`

	// The name that you assign to the Config rule. The name is required if you
	// are adding a new rule.
	ConfigRuleName *string `min:"1" type:"string"`

	// Indicates whether the Config rule is active or is currently being deleted
	// by Config. It can also indicate the evaluation status for the Config rule.
	//
	// Config sets the state of the rule to EVALUATING temporarily after you use
	// the StartConfigRulesEvaluation request to evaluate your resources against
	// the Config rule.
	//
	// Config sets the state of the rule to DELETING_RESULTS temporarily after you
	// use the DeleteEvaluationResults request to delete the current evaluation
	// results for the Config rule.
	//
	// Config temporarily sets the state of a rule to DELETING after you use the
	// DeleteConfigRule request to delete the rule. After Config deletes the rule,
	// the rule and all of its evaluations are erased and are no longer available.
	ConfigRuleState *string `type:"string" enum:"ConfigRuleState"`

	// Service principal name of the service that created the rule.
	//
	// The field is populated only if the service-linked rule is created by a service.
	// The field is empty if you create your own rule.
	CreatedBy *string `min:"1" type:"string"`

	// The description that you provide for the Config rule.
	Description *string `type:"string"`

	// The modes the Config rule can be evaluated in. The valid values are distinct
	// objects. By default, the value is Detective evaluation mode only.
	EvaluationModes []*EvaluationModeConfiguration `type:"list"`

	// A string, in JSON format, that is passed to the Config rule Lambda function.
	InputParameters *string `min:"1" type:"string"`

	// The maximum frequency with which Config runs evaluations for a rule. You
	// can specify a value for MaximumExecutionFrequency when:
	//
	//    * This is for an Config managed rule that is triggered at a periodic frequency.
	//
	//    * Your custom rule is triggered when Config delivers the configuration
	//    snapshot. For more information, see ConfigSnapshotDeliveryProperties.
	//
	// By default, rules with a periodic trigger are evaluated every 24 hours. To
	// change the frequency, specify a valid value for the MaximumExecutionFrequency
	// parameter.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// Defines which resources can trigger an evaluation for the rule. The scope
	// can include one or more resource types, a combination of one resource type
	// and one resource ID, or a combination of a tag key and value. Specify a scope
	// to constrain the resources that can trigger an evaluation for the rule. If
	// you do not specify a scope, evaluations are triggered when any resource in
	// the recording group changes.
	//
	// The scope can be empty.
	Scope *Scope `type:"structure"`

	// Provides the rule owner (Amazon Web Services for managed rules, CUSTOM_POLICY
	// for Custom Policy rules, and CUSTOM_LAMBDA for Custom Lambda rules), the
	// rule identifier, and the notifications that cause the function to evaluate
	// your Amazon Web Services resources.
	//
	// Source is a required field
	Source *Source `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Config rules evaluate the configuration settings of your Amazon Web Services resources. A rule can run when Config detects a configuration change to an Amazon Web Services resource or at a periodic frequency that you choose (for example, every 24 hours). There are two types of rules: Config Managed Rules and Config Custom Rules.

Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules (https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html).

Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide (https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with Guard (Guard GitHub Repository (https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. Config custom rules created with Lambda are called Config Custom Lambda Rules and Config custom rules created with Guard are called Config Custom Policy Rules.

For more information about developing and using Config rules, see Evaluating Resource with Config Rules (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html) in the Config Developer Guide.

You can use the Amazon Web Services CLI and Amazon Web Services SDKs if you want to create a rule that triggers evaluations for your resources when Config delivers the configuration snapshot. For more information, see ConfigSnapshotDeliveryProperties.

func (ConfigRule) GoString added in v0.9.13

func (s ConfigRule) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRule) SetConfigRuleArn added in v1.5.0

func (s *ConfigRule) SetConfigRuleArn(v string) *ConfigRule

SetConfigRuleArn sets the ConfigRuleArn field's value.

func (*ConfigRule) SetConfigRuleId added in v1.5.0

func (s *ConfigRule) SetConfigRuleId(v string) *ConfigRule

SetConfigRuleId sets the ConfigRuleId field's value.

func (*ConfigRule) SetConfigRuleName added in v1.5.0

func (s *ConfigRule) SetConfigRuleName(v string) *ConfigRule

SetConfigRuleName sets the ConfigRuleName field's value.

func (*ConfigRule) SetConfigRuleState added in v1.5.0

func (s *ConfigRule) SetConfigRuleState(v string) *ConfigRule

SetConfigRuleState sets the ConfigRuleState field's value.

func (*ConfigRule) SetCreatedBy added in v1.15.31

func (s *ConfigRule) SetCreatedBy(v string) *ConfigRule

SetCreatedBy sets the CreatedBy field's value.

func (*ConfigRule) SetDescription added in v1.5.0

func (s *ConfigRule) SetDescription(v string) *ConfigRule

SetDescription sets the Description field's value.

func (*ConfigRule) SetEvaluationModes added in v1.44.147

func (s *ConfigRule) SetEvaluationModes(v []*EvaluationModeConfiguration) *ConfigRule

SetEvaluationModes sets the EvaluationModes field's value.

func (*ConfigRule) SetInputParameters added in v1.5.0

func (s *ConfigRule) SetInputParameters(v string) *ConfigRule

SetInputParameters sets the InputParameters field's value.

func (*ConfigRule) SetMaximumExecutionFrequency added in v1.5.0

func (s *ConfigRule) SetMaximumExecutionFrequency(v string) *ConfigRule

SetMaximumExecutionFrequency sets the MaximumExecutionFrequency field's value.

func (*ConfigRule) SetScope added in v1.5.0

func (s *ConfigRule) SetScope(v *Scope) *ConfigRule

SetScope sets the Scope field's value.

func (*ConfigRule) SetSource added in v1.5.0

func (s *ConfigRule) SetSource(v *Source) *ConfigRule

SetSource sets the Source field's value.

func (ConfigRule) String added in v0.9.13

func (s ConfigRule) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRule) Validate added in v1.1.21

func (s *ConfigRule) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfigRuleComplianceFilters added in v1.13.28

type ConfigRuleComplianceFilters struct {

	// The 12-digit account ID of the source account.
	AccountId *string `type:"string"`

	// The source region where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`

	// The rule compliance status.
	//
	// For the ConfigRuleComplianceFilters data type, Config supports only COMPLIANT
	// and NON_COMPLIANT. Config does not support the NOT_APPLICABLE and the INSUFFICIENT_DATA
	// values.
	ComplianceType *string `type:"string" enum:"ComplianceType"`

	// The name of the Config rule.
	ConfigRuleName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Filters the compliance results based on account ID, region, compliance type, and rule name.

func (ConfigRuleComplianceFilters) GoString added in v1.13.28

func (s ConfigRuleComplianceFilters) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRuleComplianceFilters) SetAccountId added in v1.13.28

SetAccountId sets the AccountId field's value.

func (*ConfigRuleComplianceFilters) SetAwsRegion added in v1.13.28

SetAwsRegion sets the AwsRegion field's value.

func (*ConfigRuleComplianceFilters) SetComplianceType added in v1.13.28

SetComplianceType sets the ComplianceType field's value.

func (*ConfigRuleComplianceFilters) SetConfigRuleName added in v1.13.28

SetConfigRuleName sets the ConfigRuleName field's value.

func (ConfigRuleComplianceFilters) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRuleComplianceFilters) Validate added in v1.13.28

func (s *ConfigRuleComplianceFilters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfigRuleComplianceSummaryFilters added in v1.13.28

type ConfigRuleComplianceSummaryFilters struct {

	// The 12-digit account ID of the source account.
	AccountId *string `type:"string"`

	// The source region where the data is aggregated.
	AwsRegion *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Filters the results based on the account IDs and regions.

func (ConfigRuleComplianceSummaryFilters) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRuleComplianceSummaryFilters) SetAccountId added in v1.13.28

SetAccountId sets the AccountId field's value.

func (*ConfigRuleComplianceSummaryFilters) SetAwsRegion added in v1.13.28

SetAwsRegion sets the AwsRegion field's value.

func (ConfigRuleComplianceSummaryFilters) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRuleComplianceSummaryFilters) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type ConfigRuleEvaluationStatus added in v0.9.13

type ConfigRuleEvaluationStatus struct {

	// The Amazon Resource Name (ARN) of the Config rule.
	ConfigRuleArn *string `type:"string"`

	// The ID of the Config rule.
	ConfigRuleId *string `type:"string"`

	// The name of the Config rule.
	ConfigRuleName *string `min:"1" type:"string"`

	// The time that you first activated the Config rule.
	FirstActivatedTime *time.Time `type:"timestamp"`

	// Indicates whether Config has evaluated your resources against the rule at
	// least once.
	//
	//    * true - Config has evaluated your Amazon Web Services resources against
	//    the rule at least once.
	//
	//    * false - Config has not finished evaluating your Amazon Web Services
	//    resources against the rule at least once.
	FirstEvaluationStarted *bool `type:"boolean"`

	// The time that you last turned off the Config rule.
	LastDeactivatedTime *time.Time `type:"timestamp"`

	// The status of the last attempted delivery of a debug log for your Config
	// Custom Policy rules. Either Successful or Failed.
	LastDebugLogDeliveryStatus *string `type:"string"`

	// The reason Config was not able to deliver a debug log. This is for the last
	// failed attempt to retrieve a debug log for your Config Custom Policy rules.
	LastDebugLogDeliveryStatusReason *string `type:"string"`

	// The time Config last attempted to deliver a debug log for your Config Custom
	// Policy rules.
	LastDebugLogDeliveryTime *time.Time `type:"timestamp"`

	// The error code that Config returned when the rule last failed.
	LastErrorCode *string `type:"string"`

	// The error message that Config returned when the rule last failed.
	LastErrorMessage *string `type:"string"`

	// The time that Config last failed to evaluate your Amazon Web Services resources
	// against the rule.
	LastFailedEvaluationTime *time.Time `type:"timestamp"`

	// The time that Config last failed to invoke the Config rule to evaluate your
	// Amazon Web Services resources.
	LastFailedInvocationTime *time.Time `type:"timestamp"`

	// The time that Config last successfully evaluated your Amazon Web Services
	// resources against the rule.
	LastSuccessfulEvaluationTime *time.Time `type:"timestamp"`

	// The time that Config last successfully invoked the Config rule to evaluate
	// your Amazon Web Services resources.
	LastSuccessfulInvocationTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

Status information for your Config Managed rules and Config Custom Policy rules. The status includes information such as the last time the rule ran, the last time it failed, and the related error for the last failure.

This action does not return status information about Config Custom Lambda rules.

func (ConfigRuleEvaluationStatus) GoString added in v0.9.13

func (s ConfigRuleEvaluationStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigRuleEvaluationStatus) SetConfigRuleArn added in v1.5.0

SetConfigRuleArn sets the ConfigRuleArn field's value.

func (*ConfigRuleEvaluationStatus) SetConfigRuleId added in v1.5.0

SetConfigRuleId sets the ConfigRuleId field's value.

func (*ConfigRuleEvaluationStatus) SetConfigRuleName added in v1.5.0

SetConfigRuleName sets the ConfigRuleName field's value.

func (*ConfigRuleEvaluationStatus) SetFirstActivatedTime added in v1.5.0

func (s *ConfigRuleEvaluationStatus) SetFirstActivatedTime(v time.Time) *ConfigRuleEvaluationStatus

SetFirstActivatedTime sets the FirstActivatedTime field's value.

func (*ConfigRuleEvaluationStatus) SetFirstEvaluationStarted added in v1.5.0

func (s *ConfigRuleEvaluationStatus) SetFirstEvaluationStarted(v bool) *ConfigRuleEvaluationStatus

SetFirstEvaluationStarted sets the FirstEvaluationStarted field's value.

func (*ConfigRuleEvaluationStatus) SetLastDeactivatedTime added in v1.29.13

func (s *ConfigRuleEvaluationStatus) SetLastDeactivatedTime(v time.Time) *ConfigRuleEvaluationStatus

SetLastDeactivatedTime sets the LastDeactivatedTime field's value.

func (*ConfigRuleEvaluationStatus) SetLastDebugLogDeliveryStatus added in v1.43.25

func (s *ConfigRuleEvaluationStatus) SetLastDebugLogDeliveryStatus(v string) *ConfigRuleEvaluationStatus

SetLastDebugLogDeliveryStatus sets the LastDebugLogDeliveryStatus field's value.

func (*ConfigRuleEvaluationStatus) SetLastDebugLogDeliveryStatusReason added in v1.43.25

func (s *ConfigRuleEvaluationStatus) SetLastDebugLogDeliveryStatusReason(v string) *ConfigRuleEvaluationStatus

SetLastDebugLogDeliveryStatusReason sets the LastDebugLogDeliveryStatusReason field's value.

func (*ConfigRuleEvaluationStatus) SetLastDebugLogDeliveryTime added in v1.43.25

func (s *ConfigRuleEvaluationStatus) SetLastDebugLogDeliveryTime(v time.Time) *ConfigRuleEvaluationStatus

SetLastDebugLogDeliveryTime sets the LastDebugLogDeliveryTime field's value.

func (*ConfigRuleEvaluationStatus) SetLastErrorCode added in v1.5.0

SetLastErrorCode sets the LastErrorCode field's value.

func (*ConfigRuleEvaluationStatus) SetLastErrorMessage added in v1.5.0

SetLastErrorMessage sets the LastErrorMessage field's value.

func (*ConfigRuleEvaluationStatus) SetLastFailedEvaluationTime added in v1.5.0

func (s *ConfigRuleEvaluationStatus) SetLastFailedEvaluationTime(v time.Time) *ConfigRuleEvaluationStatus

SetLastFailedEvaluationTime sets the LastFailedEvaluationTime field's value.

func (*ConfigRuleEvaluationStatus) SetLastFailedInvocationTime added in v1.5.0

func (s *ConfigRuleEvaluationStatus) SetLastFailedInvocationTime(v time.Time) *ConfigRuleEvaluationStatus

SetLastFailedInvocationTime sets the LastFailedInvocationTime field's value.

func (*ConfigRuleEvaluationStatus) SetLastSuccessfulEvaluationTime added in v1.5.0

func (s *ConfigRuleEvaluationStatus) SetLastSuccessfulEvaluationTime(v time.Time) *ConfigRuleEvaluationStatus

SetLastSuccessfulEvaluationTime sets the LastSuccessfulEvaluationTime field's value.

func (*ConfigRuleEvaluationStatus) SetLastSuccessfulInvocationTime added in v1.5.0

func (s *ConfigRuleEvaluationStatus) SetLastSuccessfulInvocationTime(v time.Time) *ConfigRuleEvaluationStatus

SetLastSuccessfulInvocationTime sets the LastSuccessfulInvocationTime field's value.

func (ConfigRuleEvaluationStatus) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigService

type ConfigService struct {
	*client.Client
}

ConfigService provides the API operation methods for making requests to AWS Config. See this package's package overview docs for details on the service.

ConfigService methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *ConfigService

New creates a new instance of the ConfigService client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

mySession := session.Must(session.NewSession())

// Create a ConfigService client from just a session.
svc := configservice.New(mySession)

// Create a ConfigService client with additional configuration
svc := configservice.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*ConfigService) BatchGetAggregateResourceConfig added in v1.15.79

BatchGetAggregateResourceConfig API operation for AWS Config.

Returns the current configuration items for resources that are present in your Config aggregator. The operation also returns a list of resources that are not processed in the current request. If there are no unprocessed resources, the operation returns an empty unprocessedResourceIdentifiers list.

  • The API does not return results for deleted resources.

  • The API does not return tags and relationships.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation BatchGetAggregateResourceConfig for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/BatchGetAggregateResourceConfig

func (*ConfigService) BatchGetAggregateResourceConfigRequest added in v1.15.79

func (c *ConfigService) BatchGetAggregateResourceConfigRequest(input *BatchGetAggregateResourceConfigInput) (req *request.Request, output *BatchGetAggregateResourceConfigOutput)

BatchGetAggregateResourceConfigRequest generates a "aws/request.Request" representing the client's request for the BatchGetAggregateResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetAggregateResourceConfig for more information on using the BatchGetAggregateResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetAggregateResourceConfigRequest method.
req, resp := client.BatchGetAggregateResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/BatchGetAggregateResourceConfig

func (*ConfigService) BatchGetAggregateResourceConfigWithContext added in v1.15.79

func (c *ConfigService) BatchGetAggregateResourceConfigWithContext(ctx aws.Context, input *BatchGetAggregateResourceConfigInput, opts ...request.Option) (*BatchGetAggregateResourceConfigOutput, error)

BatchGetAggregateResourceConfigWithContext is the same as BatchGetAggregateResourceConfig with the addition of the ability to pass a context and additional request options.

See BatchGetAggregateResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) BatchGetResourceConfig added in v1.13.17

func (c *ConfigService) BatchGetResourceConfig(input *BatchGetResourceConfigInput) (*BatchGetResourceConfigOutput, error)

BatchGetResourceConfig API operation for AWS Config.

Returns the BaseConfigurationItem for one or more requested resources. The operation also returns a list of resources that are not processed in the current request. If there are no unprocessed resources, the operation returns an empty unprocessedResourceKeys list.

  • The API does not return results for deleted resources.

  • The API does not return any tags for the requested resources. This information is filtered out of the supplementaryConfiguration section of the API response.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation BatchGetResourceConfig for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • NoAvailableConfigurationRecorderException There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/BatchGetResourceConfig

func (*ConfigService) BatchGetResourceConfigRequest added in v1.13.17

func (c *ConfigService) BatchGetResourceConfigRequest(input *BatchGetResourceConfigInput) (req *request.Request, output *BatchGetResourceConfigOutput)

BatchGetResourceConfigRequest generates a "aws/request.Request" representing the client's request for the BatchGetResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetResourceConfig for more information on using the BatchGetResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetResourceConfigRequest method.
req, resp := client.BatchGetResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/BatchGetResourceConfig

func (*ConfigService) BatchGetResourceConfigWithContext added in v1.13.17

func (c *ConfigService) BatchGetResourceConfigWithContext(ctx aws.Context, input *BatchGetResourceConfigInput, opts ...request.Option) (*BatchGetResourceConfigOutput, error)

BatchGetResourceConfigWithContext is the same as BatchGetResourceConfig with the addition of the ability to pass a context and additional request options.

See BatchGetResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteAggregationAuthorization added in v1.13.28

DeleteAggregationAuthorization API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteAggregationAuthorization for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteAggregationAuthorization

func (*ConfigService) DeleteAggregationAuthorizationRequest added in v1.13.28

func (c *ConfigService) DeleteAggregationAuthorizationRequest(input *DeleteAggregationAuthorizationInput) (req *request.Request, output *DeleteAggregationAuthorizationOutput)

DeleteAggregationAuthorizationRequest generates a "aws/request.Request" representing the client's request for the DeleteAggregationAuthorization operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteAggregationAuthorization for more information on using the DeleteAggregationAuthorization API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteAggregationAuthorizationRequest method.
req, resp := client.DeleteAggregationAuthorizationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteAggregationAuthorization

func (*ConfigService) DeleteAggregationAuthorizationWithContext added in v1.13.28

func (c *ConfigService) DeleteAggregationAuthorizationWithContext(ctx aws.Context, input *DeleteAggregationAuthorizationInput, opts ...request.Option) (*DeleteAggregationAuthorizationOutput, error)

DeleteAggregationAuthorizationWithContext is the same as DeleteAggregationAuthorization with the addition of the ability to pass a context and additional request options.

See DeleteAggregationAuthorization for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteConfigRule added in v0.9.13

func (c *ConfigService) DeleteConfigRule(input *DeleteConfigRuleInput) (*DeleteConfigRuleOutput, error)

DeleteConfigRule API operation for AWS Config.

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

Config sets the state of a rule to DELETING until the deletion is complete. You cannot update a rule while it is in this state. If you make a PutConfigRule or DeleteConfigRule request for the rule, you will receive a ResourceInUseException.

You can check the state of a rule by using the DescribeConfigRules request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteConfigRule for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigRule

func (*ConfigService) DeleteConfigRuleRequest added in v0.9.13

func (c *ConfigService) DeleteConfigRuleRequest(input *DeleteConfigRuleInput) (req *request.Request, output *DeleteConfigRuleOutput)

DeleteConfigRuleRequest generates a "aws/request.Request" representing the client's request for the DeleteConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteConfigRule for more information on using the DeleteConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteConfigRuleRequest method.
req, resp := client.DeleteConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigRule

func (*ConfigService) DeleteConfigRuleWithContext added in v1.8.0

func (c *ConfigService) DeleteConfigRuleWithContext(ctx aws.Context, input *DeleteConfigRuleInput, opts ...request.Option) (*DeleteConfigRuleOutput, error)

DeleteConfigRuleWithContext is the same as DeleteConfigRule with the addition of the ability to pass a context and additional request options.

See DeleteConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteConfigurationAggregator added in v1.13.28

DeleteConfigurationAggregator API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteConfigurationAggregator for usage and error information.

Returned Error Types:

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigurationAggregator

func (*ConfigService) DeleteConfigurationAggregatorRequest added in v1.13.28

func (c *ConfigService) DeleteConfigurationAggregatorRequest(input *DeleteConfigurationAggregatorInput) (req *request.Request, output *DeleteConfigurationAggregatorOutput)

DeleteConfigurationAggregatorRequest generates a "aws/request.Request" representing the client's request for the DeleteConfigurationAggregator operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteConfigurationAggregator for more information on using the DeleteConfigurationAggregator API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteConfigurationAggregatorRequest method.
req, resp := client.DeleteConfigurationAggregatorRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigurationAggregator

func (*ConfigService) DeleteConfigurationAggregatorWithContext added in v1.13.28

func (c *ConfigService) DeleteConfigurationAggregatorWithContext(ctx aws.Context, input *DeleteConfigurationAggregatorInput, opts ...request.Option) (*DeleteConfigurationAggregatorOutput, error)

DeleteConfigurationAggregatorWithContext is the same as DeleteConfigurationAggregator with the addition of the ability to pass a context and additional request options.

See DeleteConfigurationAggregator for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteConfigurationRecorder added in v1.2.4

DeleteConfigurationRecorder API operation for AWS Config.

Deletes the configuration recorder.

After the configuration recorder is deleted, Config will not record resource configuration changes until you create a new configuration recorder.

This action does not delete the configuration information that was previously recorded. You will be able to access the previously recorded information by using the GetResourceConfigHistory action, but you will not be able to access this information in the Config console until you create a new configuration recorder.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteConfigurationRecorder for usage and error information.

Returned Error Types:

  • NoSuchConfigurationRecorderException You have specified a configuration recorder that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigurationRecorder

func (*ConfigService) DeleteConfigurationRecorderRequest added in v1.2.4

func (c *ConfigService) DeleteConfigurationRecorderRequest(input *DeleteConfigurationRecorderInput) (req *request.Request, output *DeleteConfigurationRecorderOutput)

DeleteConfigurationRecorderRequest generates a "aws/request.Request" representing the client's request for the DeleteConfigurationRecorder operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteConfigurationRecorder for more information on using the DeleteConfigurationRecorder API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteConfigurationRecorderRequest method.
req, resp := client.DeleteConfigurationRecorderRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConfigurationRecorder

func (*ConfigService) DeleteConfigurationRecorderWithContext added in v1.8.0

func (c *ConfigService) DeleteConfigurationRecorderWithContext(ctx aws.Context, input *DeleteConfigurationRecorderInput, opts ...request.Option) (*DeleteConfigurationRecorderOutput, error)

DeleteConfigurationRecorderWithContext is the same as DeleteConfigurationRecorder with the addition of the ability to pass a context and additional request options.

See DeleteConfigurationRecorder for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteConformancePack added in v1.25.38

func (c *ConfigService) DeleteConformancePack(input *DeleteConformancePackInput) (*DeleteConformancePackOutput, error)

DeleteConformancePack API operation for AWS Config.

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

Config sets the conformance pack to DELETE_IN_PROGRESS until the deletion is complete. You cannot update a conformance pack while it is in this state.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteConformancePack for usage and error information.

Returned Error Types:

  • NoSuchConformancePackException You specified one or more conformance packs that do not exist.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConformancePack

func (*ConfigService) DeleteConformancePackRequest added in v1.25.38

func (c *ConfigService) DeleteConformancePackRequest(input *DeleteConformancePackInput) (req *request.Request, output *DeleteConformancePackOutput)

DeleteConformancePackRequest generates a "aws/request.Request" representing the client's request for the DeleteConformancePack operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteConformancePack for more information on using the DeleteConformancePack API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteConformancePackRequest method.
req, resp := client.DeleteConformancePackRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteConformancePack

func (*ConfigService) DeleteConformancePackWithContext added in v1.25.38

func (c *ConfigService) DeleteConformancePackWithContext(ctx aws.Context, input *DeleteConformancePackInput, opts ...request.Option) (*DeleteConformancePackOutput, error)

DeleteConformancePackWithContext is the same as DeleteConformancePack with the addition of the ability to pass a context and additional request options.

See DeleteConformancePack for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteDeliveryChannel

func (c *ConfigService) DeleteDeliveryChannel(input *DeleteDeliveryChannelInput) (*DeleteDeliveryChannelOutput, error)

DeleteDeliveryChannel API operation for AWS Config.

Deletes the delivery channel.

Before you can delete the delivery channel, you must stop the configuration recorder by using the StopConfigurationRecorder action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteDeliveryChannel for usage and error information.

Returned Error Types:

  • NoSuchDeliveryChannelException You have specified a delivery channel that does not exist.

  • LastDeliveryChannelDeleteFailedException You cannot delete the delivery channel you specified because the configuration recorder is running.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteDeliveryChannel

func (*ConfigService) DeleteDeliveryChannelRequest

func (c *ConfigService) DeleteDeliveryChannelRequest(input *DeleteDeliveryChannelInput) (req *request.Request, output *DeleteDeliveryChannelOutput)

DeleteDeliveryChannelRequest generates a "aws/request.Request" representing the client's request for the DeleteDeliveryChannel operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteDeliveryChannel for more information on using the DeleteDeliveryChannel API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteDeliveryChannelRequest method.
req, resp := client.DeleteDeliveryChannelRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteDeliveryChannel

func (*ConfigService) DeleteDeliveryChannelWithContext added in v1.8.0

func (c *ConfigService) DeleteDeliveryChannelWithContext(ctx aws.Context, input *DeleteDeliveryChannelInput, opts ...request.Option) (*DeleteDeliveryChannelOutput, error)

DeleteDeliveryChannelWithContext is the same as DeleteDeliveryChannel with the addition of the ability to pass a context and additional request options.

See DeleteDeliveryChannel for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteEvaluationResults added in v1.2.7

func (c *ConfigService) DeleteEvaluationResults(input *DeleteEvaluationResultsInput) (*DeleteEvaluationResultsOutput, error)

DeleteEvaluationResults API operation for AWS Config.

Deletes the evaluation results for the specified Config rule. You can specify one Config rule per request. After you delete the evaluation results, you can call the StartConfigRulesEvaluation API to start evaluating your Amazon Web Services resources against the rule.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteEvaluationResults for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteEvaluationResults

func (*ConfigService) DeleteEvaluationResultsRequest added in v1.2.7

func (c *ConfigService) DeleteEvaluationResultsRequest(input *DeleteEvaluationResultsInput) (req *request.Request, output *DeleteEvaluationResultsOutput)

DeleteEvaluationResultsRequest generates a "aws/request.Request" representing the client's request for the DeleteEvaluationResults operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteEvaluationResults for more information on using the DeleteEvaluationResults API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteEvaluationResultsRequest method.
req, resp := client.DeleteEvaluationResultsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteEvaluationResults

func (*ConfigService) DeleteEvaluationResultsWithContext added in v1.8.0

func (c *ConfigService) DeleteEvaluationResultsWithContext(ctx aws.Context, input *DeleteEvaluationResultsInput, opts ...request.Option) (*DeleteEvaluationResultsOutput, error)

DeleteEvaluationResultsWithContext is the same as DeleteEvaluationResults with the addition of the ability to pass a context and additional request options.

See DeleteEvaluationResults for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteOrganizationConfigRule added in v1.20.17

DeleteOrganizationConfigRule API operation for AWS Config.

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

Only a management account and a delegated administrator account can delete an organization Config rule. When calling this API with a delegated administrator, you must ensure Organizations ListDelegatedAdministrator permissions are added.

Config sets the state of a rule to DELETE_IN_PROGRESS until the deletion is complete. You cannot update a rule while it is in this state.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteOrganizationConfigRule for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConfigRuleException The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConfigRule

func (*ConfigService) DeleteOrganizationConfigRuleRequest added in v1.20.17

func (c *ConfigService) DeleteOrganizationConfigRuleRequest(input *DeleteOrganizationConfigRuleInput) (req *request.Request, output *DeleteOrganizationConfigRuleOutput)

DeleteOrganizationConfigRuleRequest generates a "aws/request.Request" representing the client's request for the DeleteOrganizationConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteOrganizationConfigRule for more information on using the DeleteOrganizationConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteOrganizationConfigRuleRequest method.
req, resp := client.DeleteOrganizationConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConfigRule

func (*ConfigService) DeleteOrganizationConfigRuleWithContext added in v1.20.17

func (c *ConfigService) DeleteOrganizationConfigRuleWithContext(ctx aws.Context, input *DeleteOrganizationConfigRuleInput, opts ...request.Option) (*DeleteOrganizationConfigRuleOutput, error)

DeleteOrganizationConfigRuleWithContext is the same as DeleteOrganizationConfigRule with the addition of the ability to pass a context and additional request options.

See DeleteOrganizationConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteOrganizationConformancePack added in v1.25.38

DeleteOrganizationConformancePack API operation for AWS Config.

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

Only a management account or a delegated administrator account can delete an organization conformance pack. When calling this API with a delegated administrator, you must ensure Organizations ListDelegatedAdministrator permissions are added.

Config sets the state of a conformance pack to DELETE_IN_PROGRESS until the deletion is complete. You cannot update a conformance pack while it is in this state.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteOrganizationConformancePack for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConformancePackException Config organization conformance pack that you passed in the filter does not exist.

    For DeleteOrganizationConformancePack, you tried to delete an organization conformance pack that does not exist.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConformancePack

func (*ConfigService) DeleteOrganizationConformancePackRequest added in v1.25.38

func (c *ConfigService) DeleteOrganizationConformancePackRequest(input *DeleteOrganizationConformancePackInput) (req *request.Request, output *DeleteOrganizationConformancePackOutput)

DeleteOrganizationConformancePackRequest generates a "aws/request.Request" representing the client's request for the DeleteOrganizationConformancePack operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteOrganizationConformancePack for more information on using the DeleteOrganizationConformancePack API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteOrganizationConformancePackRequest method.
req, resp := client.DeleteOrganizationConformancePackRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteOrganizationConformancePack

func (*ConfigService) DeleteOrganizationConformancePackWithContext added in v1.25.38

func (c *ConfigService) DeleteOrganizationConformancePackWithContext(ctx aws.Context, input *DeleteOrganizationConformancePackInput, opts ...request.Option) (*DeleteOrganizationConformancePackOutput, error)

DeleteOrganizationConformancePackWithContext is the same as DeleteOrganizationConformancePack with the addition of the ability to pass a context and additional request options.

See DeleteOrganizationConformancePack for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeletePendingAggregationRequest added in v1.13.28

DeletePendingAggregationRequest API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeletePendingAggregationRequest for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeletePendingAggregationRequest

func (*ConfigService) DeletePendingAggregationRequestRequest added in v1.13.28

func (c *ConfigService) DeletePendingAggregationRequestRequest(input *DeletePendingAggregationRequestInput) (req *request.Request, output *DeletePendingAggregationRequestOutput)

DeletePendingAggregationRequestRequest generates a "aws/request.Request" representing the client's request for the DeletePendingAggregationRequest operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeletePendingAggregationRequest for more information on using the DeletePendingAggregationRequest API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeletePendingAggregationRequestRequest method.
req, resp := client.DeletePendingAggregationRequestRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeletePendingAggregationRequest

func (*ConfigService) DeletePendingAggregationRequestWithContext added in v1.13.28

func (c *ConfigService) DeletePendingAggregationRequestWithContext(ctx aws.Context, input *DeletePendingAggregationRequestInput, opts ...request.Option) (*DeletePendingAggregationRequestOutput, error)

DeletePendingAggregationRequestWithContext is the same as DeletePendingAggregationRequest with the addition of the ability to pass a context and additional request options.

See DeletePendingAggregationRequest for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteRemediationConfiguration added in v1.18.2

DeleteRemediationConfiguration API operation for AWS Config.

Deletes the remediation configuration.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteRemediationConfiguration for usage and error information.

Returned Error Types:

  • NoSuchRemediationConfigurationException You specified an Config rule without a remediation configuration.

  • RemediationInProgressException Remediation action is in progress. You can either cancel execution in Amazon Web Services Systems Manager or wait and try again later.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteRemediationConfiguration

func (*ConfigService) DeleteRemediationConfigurationRequest added in v1.18.2

func (c *ConfigService) DeleteRemediationConfigurationRequest(input *DeleteRemediationConfigurationInput) (req *request.Request, output *DeleteRemediationConfigurationOutput)

DeleteRemediationConfigurationRequest generates a "aws/request.Request" representing the client's request for the DeleteRemediationConfiguration operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteRemediationConfiguration for more information on using the DeleteRemediationConfiguration API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteRemediationConfigurationRequest method.
req, resp := client.DeleteRemediationConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteRemediationConfiguration

func (*ConfigService) DeleteRemediationConfigurationWithContext added in v1.18.2

func (c *ConfigService) DeleteRemediationConfigurationWithContext(ctx aws.Context, input *DeleteRemediationConfigurationInput, opts ...request.Option) (*DeleteRemediationConfigurationOutput, error)

DeleteRemediationConfigurationWithContext is the same as DeleteRemediationConfiguration with the addition of the ability to pass a context and additional request options.

See DeleteRemediationConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteRemediationExceptions added in v1.23.16

DeleteRemediationExceptions API operation for AWS Config.

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

Config generates a remediation exception when a problem occurs executing a remediation action to a specific resource. Remediation exceptions blocks auto-remediation until the exception is cleared.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteRemediationExceptions for usage and error information.

Returned Error Types:

  • NoSuchRemediationExceptionException You tried to delete a remediation exception that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteRemediationExceptions

func (*ConfigService) DeleteRemediationExceptionsRequest added in v1.23.16

func (c *ConfigService) DeleteRemediationExceptionsRequest(input *DeleteRemediationExceptionsInput) (req *request.Request, output *DeleteRemediationExceptionsOutput)

DeleteRemediationExceptionsRequest generates a "aws/request.Request" representing the client's request for the DeleteRemediationExceptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteRemediationExceptions for more information on using the DeleteRemediationExceptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteRemediationExceptionsRequest method.
req, resp := client.DeleteRemediationExceptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteRemediationExceptions

func (*ConfigService) DeleteRemediationExceptionsWithContext added in v1.23.16

func (c *ConfigService) DeleteRemediationExceptionsWithContext(ctx aws.Context, input *DeleteRemediationExceptionsInput, opts ...request.Option) (*DeleteRemediationExceptionsOutput, error)

DeleteRemediationExceptionsWithContext is the same as DeleteRemediationExceptions with the addition of the ability to pass a context and additional request options.

See DeleteRemediationExceptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteResourceConfig added in v1.25.40

func (c *ConfigService) DeleteResourceConfig(input *DeleteResourceConfigInput) (*DeleteResourceConfigOutput, error)

DeleteResourceConfig API operation for AWS Config.

Records the configuration state for a custom resource that has been deleted. This API records a new ConfigurationItem with a ResourceDeleted status. You can retrieve the ConfigurationItems recorded for this resource in your Config History.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteResourceConfig for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • NoRunningConfigurationRecorderException There is no configuration recorder running.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteResourceConfig

func (*ConfigService) DeleteResourceConfigRequest added in v1.25.40

func (c *ConfigService) DeleteResourceConfigRequest(input *DeleteResourceConfigInput) (req *request.Request, output *DeleteResourceConfigOutput)

DeleteResourceConfigRequest generates a "aws/request.Request" representing the client's request for the DeleteResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteResourceConfig for more information on using the DeleteResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteResourceConfigRequest method.
req, resp := client.DeleteResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteResourceConfig

func (*ConfigService) DeleteResourceConfigWithContext added in v1.25.40

func (c *ConfigService) DeleteResourceConfigWithContext(ctx aws.Context, input *DeleteResourceConfigInput, opts ...request.Option) (*DeleteResourceConfigOutput, error)

DeleteResourceConfigWithContext is the same as DeleteResourceConfig with the addition of the ability to pass a context and additional request options.

See DeleteResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteRetentionConfiguration added in v1.13.56

DeleteRetentionConfiguration API operation for AWS Config.

Deletes the retention configuration.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteRetentionConfiguration for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • NoSuchRetentionConfigurationException You have specified a retention configuration that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteRetentionConfiguration

func (*ConfigService) DeleteRetentionConfigurationRequest added in v1.13.56

func (c *ConfigService) DeleteRetentionConfigurationRequest(input *DeleteRetentionConfigurationInput) (req *request.Request, output *DeleteRetentionConfigurationOutput)

DeleteRetentionConfigurationRequest generates a "aws/request.Request" representing the client's request for the DeleteRetentionConfiguration operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteRetentionConfiguration for more information on using the DeleteRetentionConfiguration API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteRetentionConfigurationRequest method.
req, resp := client.DeleteRetentionConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteRetentionConfiguration

func (*ConfigService) DeleteRetentionConfigurationWithContext added in v1.13.56

func (c *ConfigService) DeleteRetentionConfigurationWithContext(ctx aws.Context, input *DeleteRetentionConfigurationInput, opts ...request.Option) (*DeleteRetentionConfigurationOutput, error)

DeleteRetentionConfigurationWithContext is the same as DeleteRetentionConfiguration with the addition of the ability to pass a context and additional request options.

See DeleteRetentionConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeleteStoredQuery added in v1.36.13

func (c *ConfigService) DeleteStoredQuery(input *DeleteStoredQueryInput) (*DeleteStoredQueryOutput, error)

DeleteStoredQuery API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeleteStoredQuery for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • ResourceNotFoundException You have specified a resource that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteStoredQuery

func (*ConfigService) DeleteStoredQueryRequest added in v1.36.13

func (c *ConfigService) DeleteStoredQueryRequest(input *DeleteStoredQueryInput) (req *request.Request, output *DeleteStoredQueryOutput)

DeleteStoredQueryRequest generates a "aws/request.Request" representing the client's request for the DeleteStoredQuery operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteStoredQuery for more information on using the DeleteStoredQuery API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteStoredQueryRequest method.
req, resp := client.DeleteStoredQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeleteStoredQuery

func (*ConfigService) DeleteStoredQueryWithContext added in v1.36.13

func (c *ConfigService) DeleteStoredQueryWithContext(ctx aws.Context, input *DeleteStoredQueryInput, opts ...request.Option) (*DeleteStoredQueryOutput, error)

DeleteStoredQueryWithContext is the same as DeleteStoredQuery with the addition of the ability to pass a context and additional request options.

See DeleteStoredQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DeliverConfigSnapshot

func (c *ConfigService) DeliverConfigSnapshot(input *DeliverConfigSnapshotInput) (*DeliverConfigSnapshotOutput, error)

DeliverConfigSnapshot API operation for AWS Config.

Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the specified delivery channel. After the delivery has started, Config sends the following notifications using an Amazon SNS topic that you have specified.

  • Notification of the start of the delivery.

  • Notification of the completion of the delivery, if the delivery was successfully completed.

  • Notification of delivery failure, if the delivery failed.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DeliverConfigSnapshot for usage and error information.

Returned Error Types:

  • NoSuchDeliveryChannelException You have specified a delivery channel that does not exist.

  • NoAvailableConfigurationRecorderException There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

  • NoRunningConfigurationRecorderException There is no configuration recorder running.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeliverConfigSnapshot

func (*ConfigService) DeliverConfigSnapshotRequest

func (c *ConfigService) DeliverConfigSnapshotRequest(input *DeliverConfigSnapshotInput) (req *request.Request, output *DeliverConfigSnapshotOutput)

DeliverConfigSnapshotRequest generates a "aws/request.Request" representing the client's request for the DeliverConfigSnapshot operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeliverConfigSnapshot for more information on using the DeliverConfigSnapshot API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeliverConfigSnapshotRequest method.
req, resp := client.DeliverConfigSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DeliverConfigSnapshot

func (*ConfigService) DeliverConfigSnapshotWithContext added in v1.8.0

func (c *ConfigService) DeliverConfigSnapshotWithContext(ctx aws.Context, input *DeliverConfigSnapshotInput, opts ...request.Option) (*DeliverConfigSnapshotOutput, error)

DeliverConfigSnapshotWithContext is the same as DeliverConfigSnapshot with the addition of the ability to pass a context and additional request options.

See DeliverConfigSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeAggregateComplianceByConfigRules added in v1.13.28

DescribeAggregateComplianceByConfigRules API operation for AWS Config.

Returns a list of compliant and noncompliant rules with the number of resources for compliant and noncompliant rules. Does not display rules that do not have compliance results.

The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeAggregateComplianceByConfigRules for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregateComplianceByConfigRules

func (*ConfigService) DescribeAggregateComplianceByConfigRulesPages added in v1.38.37

func (c *ConfigService) DescribeAggregateComplianceByConfigRulesPages(input *DescribeAggregateComplianceByConfigRulesInput, fn func(*DescribeAggregateComplianceByConfigRulesOutput, bool) bool) error

DescribeAggregateComplianceByConfigRulesPages iterates over the pages of a DescribeAggregateComplianceByConfigRules operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeAggregateComplianceByConfigRules method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeAggregateComplianceByConfigRules operation.
pageNum := 0
err := client.DescribeAggregateComplianceByConfigRulesPages(params,
    func(page *configservice.DescribeAggregateComplianceByConfigRulesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeAggregateComplianceByConfigRulesPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeAggregateComplianceByConfigRulesPagesWithContext(ctx aws.Context, input *DescribeAggregateComplianceByConfigRulesInput, fn func(*DescribeAggregateComplianceByConfigRulesOutput, bool) bool, opts ...request.Option) error

DescribeAggregateComplianceByConfigRulesPagesWithContext same as DescribeAggregateComplianceByConfigRulesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeAggregateComplianceByConfigRulesRequest added in v1.13.28

func (c *ConfigService) DescribeAggregateComplianceByConfigRulesRequest(input *DescribeAggregateComplianceByConfigRulesInput) (req *request.Request, output *DescribeAggregateComplianceByConfigRulesOutput)

DescribeAggregateComplianceByConfigRulesRequest generates a "aws/request.Request" representing the client's request for the DescribeAggregateComplianceByConfigRules operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeAggregateComplianceByConfigRules for more information on using the DescribeAggregateComplianceByConfigRules API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeAggregateComplianceByConfigRulesRequest method.
req, resp := client.DescribeAggregateComplianceByConfigRulesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregateComplianceByConfigRules

func (*ConfigService) DescribeAggregateComplianceByConfigRulesWithContext added in v1.13.28

func (c *ConfigService) DescribeAggregateComplianceByConfigRulesWithContext(ctx aws.Context, input *DescribeAggregateComplianceByConfigRulesInput, opts ...request.Option) (*DescribeAggregateComplianceByConfigRulesOutput, error)

DescribeAggregateComplianceByConfigRulesWithContext is the same as DescribeAggregateComplianceByConfigRules with the addition of the ability to pass a context and additional request options.

See DescribeAggregateComplianceByConfigRules for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeAggregateComplianceByConformancePacks added in v1.38.9

DescribeAggregateComplianceByConformancePacks API operation for AWS Config.

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. Also returns the total rule count which includes compliant rules, noncompliant rules, and rules that cannot be evaluated due to insufficient data.

The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeAggregateComplianceByConformancePacks for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregateComplianceByConformancePacks

func (*ConfigService) DescribeAggregateComplianceByConformancePacksPages added in v1.38.37

func (c *ConfigService) DescribeAggregateComplianceByConformancePacksPages(input *DescribeAggregateComplianceByConformancePacksInput, fn func(*DescribeAggregateComplianceByConformancePacksOutput, bool) bool) error

DescribeAggregateComplianceByConformancePacksPages iterates over the pages of a DescribeAggregateComplianceByConformancePacks operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeAggregateComplianceByConformancePacks method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeAggregateComplianceByConformancePacks operation.
pageNum := 0
err := client.DescribeAggregateComplianceByConformancePacksPages(params,
    func(page *configservice.DescribeAggregateComplianceByConformancePacksOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeAggregateComplianceByConformancePacksPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeAggregateComplianceByConformancePacksPagesWithContext(ctx aws.Context, input *DescribeAggregateComplianceByConformancePacksInput, fn func(*DescribeAggregateComplianceByConformancePacksOutput, bool) bool, opts ...request.Option) error

DescribeAggregateComplianceByConformancePacksPagesWithContext same as DescribeAggregateComplianceByConformancePacksPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeAggregateComplianceByConformancePacksRequest added in v1.38.9

func (c *ConfigService) DescribeAggregateComplianceByConformancePacksRequest(input *DescribeAggregateComplianceByConformancePacksInput) (req *request.Request, output *DescribeAggregateComplianceByConformancePacksOutput)

DescribeAggregateComplianceByConformancePacksRequest generates a "aws/request.Request" representing the client's request for the DescribeAggregateComplianceByConformancePacks operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeAggregateComplianceByConformancePacks for more information on using the DescribeAggregateComplianceByConformancePacks API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeAggregateComplianceByConformancePacksRequest method.
req, resp := client.DescribeAggregateComplianceByConformancePacksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregateComplianceByConformancePacks

func (*ConfigService) DescribeAggregateComplianceByConformancePacksWithContext added in v1.38.9

func (c *ConfigService) DescribeAggregateComplianceByConformancePacksWithContext(ctx aws.Context, input *DescribeAggregateComplianceByConformancePacksInput, opts ...request.Option) (*DescribeAggregateComplianceByConformancePacksOutput, error)

DescribeAggregateComplianceByConformancePacksWithContext is the same as DescribeAggregateComplianceByConformancePacks with the addition of the ability to pass a context and additional request options.

See DescribeAggregateComplianceByConformancePacks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeAggregationAuthorizations added in v1.13.28

DescribeAggregationAuthorizations API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeAggregationAuthorizations for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidLimitException The specified limit is outside the allowable range.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregationAuthorizations

func (*ConfigService) DescribeAggregationAuthorizationsPages added in v1.38.37

func (c *ConfigService) DescribeAggregationAuthorizationsPages(input *DescribeAggregationAuthorizationsInput, fn func(*DescribeAggregationAuthorizationsOutput, bool) bool) error

DescribeAggregationAuthorizationsPages iterates over the pages of a DescribeAggregationAuthorizations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeAggregationAuthorizations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeAggregationAuthorizations operation.
pageNum := 0
err := client.DescribeAggregationAuthorizationsPages(params,
    func(page *configservice.DescribeAggregationAuthorizationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeAggregationAuthorizationsPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeAggregationAuthorizationsPagesWithContext(ctx aws.Context, input *DescribeAggregationAuthorizationsInput, fn func(*DescribeAggregationAuthorizationsOutput, bool) bool, opts ...request.Option) error

DescribeAggregationAuthorizationsPagesWithContext same as DescribeAggregationAuthorizationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeAggregationAuthorizationsRequest added in v1.13.28

func (c *ConfigService) DescribeAggregationAuthorizationsRequest(input *DescribeAggregationAuthorizationsInput) (req *request.Request, output *DescribeAggregationAuthorizationsOutput)

DescribeAggregationAuthorizationsRequest generates a "aws/request.Request" representing the client's request for the DescribeAggregationAuthorizations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeAggregationAuthorizations for more information on using the DescribeAggregationAuthorizations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeAggregationAuthorizationsRequest method.
req, resp := client.DescribeAggregationAuthorizationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeAggregationAuthorizations

func (*ConfigService) DescribeAggregationAuthorizationsWithContext added in v1.13.28

func (c *ConfigService) DescribeAggregationAuthorizationsWithContext(ctx aws.Context, input *DescribeAggregationAuthorizationsInput, opts ...request.Option) (*DescribeAggregationAuthorizationsOutput, error)

DescribeAggregationAuthorizationsWithContext is the same as DescribeAggregationAuthorizations with the addition of the ability to pass a context and additional request options.

See DescribeAggregationAuthorizations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeComplianceByConfigRule added in v0.9.13

DescribeComplianceByConfigRule API operation for AWS Config.

Indicates whether the specified Config rules are compliant. If a rule is noncompliant, this action returns the number of Amazon Web Services resources that do not comply with the rule.

A rule is compliant if all of the evaluated resources comply with it. It is noncompliant if any of these resources do not comply.

If Config has no current evaluation results for the rule, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions:

  • Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime.

  • The rule's Lambda function is failing to send evaluation results to Config. Verify that the role you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a custom rule, verify that the Lambda execution role includes the config:PutEvaluations permission.

  • The rule's Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeComplianceByConfigRule for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeComplianceByConfigRule

func (*ConfigService) DescribeComplianceByConfigRulePages added in v1.38.37

func (c *ConfigService) DescribeComplianceByConfigRulePages(input *DescribeComplianceByConfigRuleInput, fn func(*DescribeComplianceByConfigRuleOutput, bool) bool) error

DescribeComplianceByConfigRulePages iterates over the pages of a DescribeComplianceByConfigRule operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeComplianceByConfigRule method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeComplianceByConfigRule operation.
pageNum := 0
err := client.DescribeComplianceByConfigRulePages(params,
    func(page *configservice.DescribeComplianceByConfigRuleOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeComplianceByConfigRulePagesWithContext added in v1.38.37

func (c *ConfigService) DescribeComplianceByConfigRulePagesWithContext(ctx aws.Context, input *DescribeComplianceByConfigRuleInput, fn func(*DescribeComplianceByConfigRuleOutput, bool) bool, opts ...request.Option) error

DescribeComplianceByConfigRulePagesWithContext same as DescribeComplianceByConfigRulePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeComplianceByConfigRuleRequest added in v0.9.13

func (c *ConfigService) DescribeComplianceByConfigRuleRequest(input *DescribeComplianceByConfigRuleInput) (req *request.Request, output *DescribeComplianceByConfigRuleOutput)

DescribeComplianceByConfigRuleRequest generates a "aws/request.Request" representing the client's request for the DescribeComplianceByConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeComplianceByConfigRule for more information on using the DescribeComplianceByConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeComplianceByConfigRuleRequest method.
req, resp := client.DescribeComplianceByConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeComplianceByConfigRule

func (*ConfigService) DescribeComplianceByConfigRuleWithContext added in v1.8.0

func (c *ConfigService) DescribeComplianceByConfigRuleWithContext(ctx aws.Context, input *DescribeComplianceByConfigRuleInput, opts ...request.Option) (*DescribeComplianceByConfigRuleOutput, error)

DescribeComplianceByConfigRuleWithContext is the same as DescribeComplianceByConfigRule with the addition of the ability to pass a context and additional request options.

See DescribeComplianceByConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeComplianceByResource added in v0.9.13

DescribeComplianceByResource API operation for AWS Config.

Indicates whether the specified Amazon Web Services resources are compliant. If a resource is noncompliant, this action returns the number of Config rules that the resource does not comply with.

A resource is compliant if it complies with all the Config rules that evaluate it. It is noncompliant if it does not comply with one or more of these rules.

If Config has no current evaluation results for the resource, it returns INSUFFICIENT_DATA. This result might indicate one of the following conditions about the rules that evaluate the resource:

  • Config has never invoked an evaluation for the rule. To check whether it has, use the DescribeConfigRuleEvaluationStatus action to get the LastSuccessfulInvocationTime and LastFailedInvocationTime.

  • The rule's Lambda function is failing to send evaluation results to Config. Verify that the role that you assigned to your configuration recorder includes the config:PutEvaluations permission. If the rule is a custom rule, verify that the Lambda execution role includes the config:PutEvaluations permission.

  • The rule's Lambda function has returned NOT_APPLICABLE for all evaluation results. This can occur if the resources were deleted or removed from the rule's scope.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeComplianceByResource for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeComplianceByResource

func (*ConfigService) DescribeComplianceByResourcePages added in v1.38.37

func (c *ConfigService) DescribeComplianceByResourcePages(input *DescribeComplianceByResourceInput, fn func(*DescribeComplianceByResourceOutput, bool) bool) error

DescribeComplianceByResourcePages iterates over the pages of a DescribeComplianceByResource operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeComplianceByResource method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeComplianceByResource operation.
pageNum := 0
err := client.DescribeComplianceByResourcePages(params,
    func(page *configservice.DescribeComplianceByResourceOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeComplianceByResourcePagesWithContext added in v1.38.37

func (c *ConfigService) DescribeComplianceByResourcePagesWithContext(ctx aws.Context, input *DescribeComplianceByResourceInput, fn func(*DescribeComplianceByResourceOutput, bool) bool, opts ...request.Option) error

DescribeComplianceByResourcePagesWithContext same as DescribeComplianceByResourcePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeComplianceByResourceRequest added in v0.9.13

func (c *ConfigService) DescribeComplianceByResourceRequest(input *DescribeComplianceByResourceInput) (req *request.Request, output *DescribeComplianceByResourceOutput)

DescribeComplianceByResourceRequest generates a "aws/request.Request" representing the client's request for the DescribeComplianceByResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeComplianceByResource for more information on using the DescribeComplianceByResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeComplianceByResourceRequest method.
req, resp := client.DescribeComplianceByResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeComplianceByResource

func (*ConfigService) DescribeComplianceByResourceWithContext added in v1.8.0

func (c *ConfigService) DescribeComplianceByResourceWithContext(ctx aws.Context, input *DescribeComplianceByResourceInput, opts ...request.Option) (*DescribeComplianceByResourceOutput, error)

DescribeComplianceByResourceWithContext is the same as DescribeComplianceByResource with the addition of the ability to pass a context and additional request options.

See DescribeComplianceByResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigRuleEvaluationStatus added in v0.9.13

DescribeConfigRuleEvaluationStatus API operation for AWS Config.

Returns status information for each of your Config managed rules. The status includes information such as the last time Config invoked the rule, the last time Config failed to invoke the rule, and the related error for the last failure.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConfigRuleEvaluationStatus for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRuleEvaluationStatus

func (*ConfigService) DescribeConfigRuleEvaluationStatusPages added in v1.38.37

func (c *ConfigService) DescribeConfigRuleEvaluationStatusPages(input *DescribeConfigRuleEvaluationStatusInput, fn func(*DescribeConfigRuleEvaluationStatusOutput, bool) bool) error

DescribeConfigRuleEvaluationStatusPages iterates over the pages of a DescribeConfigRuleEvaluationStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConfigRuleEvaluationStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConfigRuleEvaluationStatus operation.
pageNum := 0
err := client.DescribeConfigRuleEvaluationStatusPages(params,
    func(page *configservice.DescribeConfigRuleEvaluationStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConfigRuleEvaluationStatusPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConfigRuleEvaluationStatusPagesWithContext(ctx aws.Context, input *DescribeConfigRuleEvaluationStatusInput, fn func(*DescribeConfigRuleEvaluationStatusOutput, bool) bool, opts ...request.Option) error

DescribeConfigRuleEvaluationStatusPagesWithContext same as DescribeConfigRuleEvaluationStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigRuleEvaluationStatusRequest added in v0.9.13

func (c *ConfigService) DescribeConfigRuleEvaluationStatusRequest(input *DescribeConfigRuleEvaluationStatusInput) (req *request.Request, output *DescribeConfigRuleEvaluationStatusOutput)

DescribeConfigRuleEvaluationStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeConfigRuleEvaluationStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConfigRuleEvaluationStatus for more information on using the DescribeConfigRuleEvaluationStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConfigRuleEvaluationStatusRequest method.
req, resp := client.DescribeConfigRuleEvaluationStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRuleEvaluationStatus

func (*ConfigService) DescribeConfigRuleEvaluationStatusWithContext added in v1.8.0

func (c *ConfigService) DescribeConfigRuleEvaluationStatusWithContext(ctx aws.Context, input *DescribeConfigRuleEvaluationStatusInput, opts ...request.Option) (*DescribeConfigRuleEvaluationStatusOutput, error)

DescribeConfigRuleEvaluationStatusWithContext is the same as DescribeConfigRuleEvaluationStatus with the addition of the ability to pass a context and additional request options.

See DescribeConfigRuleEvaluationStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigRules added in v0.9.13

func (c *ConfigService) DescribeConfigRules(input *DescribeConfigRulesInput) (*DescribeConfigRulesOutput, error)

DescribeConfigRules API operation for AWS Config.

Returns details about your Config rules.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConfigRules for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRules

func (*ConfigService) DescribeConfigRulesPages added in v1.38.37

func (c *ConfigService) DescribeConfigRulesPages(input *DescribeConfigRulesInput, fn func(*DescribeConfigRulesOutput, bool) bool) error

DescribeConfigRulesPages iterates over the pages of a DescribeConfigRules operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConfigRules method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConfigRules operation.
pageNum := 0
err := client.DescribeConfigRulesPages(params,
    func(page *configservice.DescribeConfigRulesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConfigRulesPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConfigRulesPagesWithContext(ctx aws.Context, input *DescribeConfigRulesInput, fn func(*DescribeConfigRulesOutput, bool) bool, opts ...request.Option) error

DescribeConfigRulesPagesWithContext same as DescribeConfigRulesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigRulesRequest added in v0.9.13

func (c *ConfigService) DescribeConfigRulesRequest(input *DescribeConfigRulesInput) (req *request.Request, output *DescribeConfigRulesOutput)

DescribeConfigRulesRequest generates a "aws/request.Request" representing the client's request for the DescribeConfigRules operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConfigRules for more information on using the DescribeConfigRules API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConfigRulesRequest method.
req, resp := client.DescribeConfigRulesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRules

func (*ConfigService) DescribeConfigRulesWithContext added in v1.8.0

func (c *ConfigService) DescribeConfigRulesWithContext(ctx aws.Context, input *DescribeConfigRulesInput, opts ...request.Option) (*DescribeConfigRulesOutput, error)

DescribeConfigRulesWithContext is the same as DescribeConfigRules with the addition of the ability to pass a context and additional request options.

See DescribeConfigRules for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigurationAggregatorSourcesStatus added in v1.13.28

DescribeConfigurationAggregatorSourcesStatus API operation for AWS Config.

Returns status information for sources within an aggregator. The status includes information about the last time Config verified authorization between the source account and an aggregator account. In case of a failure, the status contains the related error code or message.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConfigurationAggregatorSourcesStatus for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidLimitException The specified limit is outside the allowable range.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregatorSourcesStatus

func (*ConfigService) DescribeConfigurationAggregatorSourcesStatusPages added in v1.38.37

func (c *ConfigService) DescribeConfigurationAggregatorSourcesStatusPages(input *DescribeConfigurationAggregatorSourcesStatusInput, fn func(*DescribeConfigurationAggregatorSourcesStatusOutput, bool) bool) error

DescribeConfigurationAggregatorSourcesStatusPages iterates over the pages of a DescribeConfigurationAggregatorSourcesStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConfigurationAggregatorSourcesStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConfigurationAggregatorSourcesStatus operation.
pageNum := 0
err := client.DescribeConfigurationAggregatorSourcesStatusPages(params,
    func(page *configservice.DescribeConfigurationAggregatorSourcesStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConfigurationAggregatorSourcesStatusPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConfigurationAggregatorSourcesStatusPagesWithContext(ctx aws.Context, input *DescribeConfigurationAggregatorSourcesStatusInput, fn func(*DescribeConfigurationAggregatorSourcesStatusOutput, bool) bool, opts ...request.Option) error

DescribeConfigurationAggregatorSourcesStatusPagesWithContext same as DescribeConfigurationAggregatorSourcesStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigurationAggregatorSourcesStatusRequest added in v1.13.28

func (c *ConfigService) DescribeConfigurationAggregatorSourcesStatusRequest(input *DescribeConfigurationAggregatorSourcesStatusInput) (req *request.Request, output *DescribeConfigurationAggregatorSourcesStatusOutput)

DescribeConfigurationAggregatorSourcesStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeConfigurationAggregatorSourcesStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConfigurationAggregatorSourcesStatus for more information on using the DescribeConfigurationAggregatorSourcesStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConfigurationAggregatorSourcesStatusRequest method.
req, resp := client.DescribeConfigurationAggregatorSourcesStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregatorSourcesStatus

func (*ConfigService) DescribeConfigurationAggregatorSourcesStatusWithContext added in v1.13.28

func (c *ConfigService) DescribeConfigurationAggregatorSourcesStatusWithContext(ctx aws.Context, input *DescribeConfigurationAggregatorSourcesStatusInput, opts ...request.Option) (*DescribeConfigurationAggregatorSourcesStatusOutput, error)

DescribeConfigurationAggregatorSourcesStatusWithContext is the same as DescribeConfigurationAggregatorSourcesStatus with the addition of the ability to pass a context and additional request options.

See DescribeConfigurationAggregatorSourcesStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigurationAggregators added in v1.13.28

DescribeConfigurationAggregators API operation for AWS Config.

Returns the details of one or more configuration aggregators. If the configuration aggregator is not specified, this action returns the details for all the configuration aggregators associated with the account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConfigurationAggregators for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidLimitException The specified limit is outside the allowable range.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregators

func (*ConfigService) DescribeConfigurationAggregatorsPages added in v1.38.37

func (c *ConfigService) DescribeConfigurationAggregatorsPages(input *DescribeConfigurationAggregatorsInput, fn func(*DescribeConfigurationAggregatorsOutput, bool) bool) error

DescribeConfigurationAggregatorsPages iterates over the pages of a DescribeConfigurationAggregators operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConfigurationAggregators method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConfigurationAggregators operation.
pageNum := 0
err := client.DescribeConfigurationAggregatorsPages(params,
    func(page *configservice.DescribeConfigurationAggregatorsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConfigurationAggregatorsPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConfigurationAggregatorsPagesWithContext(ctx aws.Context, input *DescribeConfigurationAggregatorsInput, fn func(*DescribeConfigurationAggregatorsOutput, bool) bool, opts ...request.Option) error

DescribeConfigurationAggregatorsPagesWithContext same as DescribeConfigurationAggregatorsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigurationAggregatorsRequest added in v1.13.28

func (c *ConfigService) DescribeConfigurationAggregatorsRequest(input *DescribeConfigurationAggregatorsInput) (req *request.Request, output *DescribeConfigurationAggregatorsOutput)

DescribeConfigurationAggregatorsRequest generates a "aws/request.Request" representing the client's request for the DescribeConfigurationAggregators operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConfigurationAggregators for more information on using the DescribeConfigurationAggregators API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConfigurationAggregatorsRequest method.
req, resp := client.DescribeConfigurationAggregatorsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationAggregators

func (*ConfigService) DescribeConfigurationAggregatorsWithContext added in v1.13.28

func (c *ConfigService) DescribeConfigurationAggregatorsWithContext(ctx aws.Context, input *DescribeConfigurationAggregatorsInput, opts ...request.Option) (*DescribeConfigurationAggregatorsOutput, error)

DescribeConfigurationAggregatorsWithContext is the same as DescribeConfigurationAggregators with the addition of the ability to pass a context and additional request options.

See DescribeConfigurationAggregators for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigurationRecorderStatus

DescribeConfigurationRecorderStatus API operation for AWS Config.

Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorders associated with the account.

>You can specify only one configuration recorder for each Amazon Web Services Region for each account. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConfigurationRecorderStatus for usage and error information.

Returned Error Types:

  • NoSuchConfigurationRecorderException You have specified a configuration recorder that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationRecorderStatus

func (*ConfigService) DescribeConfigurationRecorderStatusRequest

func (c *ConfigService) DescribeConfigurationRecorderStatusRequest(input *DescribeConfigurationRecorderStatusInput) (req *request.Request, output *DescribeConfigurationRecorderStatusOutput)

DescribeConfigurationRecorderStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeConfigurationRecorderStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConfigurationRecorderStatus for more information on using the DescribeConfigurationRecorderStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConfigurationRecorderStatusRequest method.
req, resp := client.DescribeConfigurationRecorderStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationRecorderStatus

func (*ConfigService) DescribeConfigurationRecorderStatusWithContext added in v1.8.0

func (c *ConfigService) DescribeConfigurationRecorderStatusWithContext(ctx aws.Context, input *DescribeConfigurationRecorderStatusInput, opts ...request.Option) (*DescribeConfigurationRecorderStatusOutput, error)

DescribeConfigurationRecorderStatusWithContext is the same as DescribeConfigurationRecorderStatus with the addition of the ability to pass a context and additional request options.

See DescribeConfigurationRecorderStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConfigurationRecorders

DescribeConfigurationRecorders API operation for AWS Config.

Returns the details for the specified configuration recorders. If the configuration recorder is not specified, this action returns the details for all configuration recorders associated with the account.

You can specify only one configuration recorder for each Amazon Web Services Region for each account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConfigurationRecorders for usage and error information.

Returned Error Types:

  • NoSuchConfigurationRecorderException You have specified a configuration recorder that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationRecorders

func (*ConfigService) DescribeConfigurationRecordersRequest

func (c *ConfigService) DescribeConfigurationRecordersRequest(input *DescribeConfigurationRecordersInput) (req *request.Request, output *DescribeConfigurationRecordersOutput)

DescribeConfigurationRecordersRequest generates a "aws/request.Request" representing the client's request for the DescribeConfigurationRecorders operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConfigurationRecorders for more information on using the DescribeConfigurationRecorders API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConfigurationRecordersRequest method.
req, resp := client.DescribeConfigurationRecordersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigurationRecorders

func (*ConfigService) DescribeConfigurationRecordersWithContext added in v1.8.0

func (c *ConfigService) DescribeConfigurationRecordersWithContext(ctx aws.Context, input *DescribeConfigurationRecordersInput, opts ...request.Option) (*DescribeConfigurationRecordersOutput, error)

DescribeConfigurationRecordersWithContext is the same as DescribeConfigurationRecorders with the addition of the ability to pass a context and additional request options.

See DescribeConfigurationRecorders for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConformancePackCompliance added in v1.25.38

DescribeConformancePackCompliance API operation for AWS Config.

Returns compliance details for each rule in that conformance pack.

You must provide exact rule names.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConformancePackCompliance for usage and error information.

Returned Error Types:

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • NoSuchConfigRuleInConformancePackException Config rule that you passed in the filter does not exist.

  • NoSuchConformancePackException You specified one or more conformance packs that do not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackCompliance

func (*ConfigService) DescribeConformancePackCompliancePages added in v1.38.37

func (c *ConfigService) DescribeConformancePackCompliancePages(input *DescribeConformancePackComplianceInput, fn func(*DescribeConformancePackComplianceOutput, bool) bool) error

DescribeConformancePackCompliancePages iterates over the pages of a DescribeConformancePackCompliance operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConformancePackCompliance method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConformancePackCompliance operation.
pageNum := 0
err := client.DescribeConformancePackCompliancePages(params,
    func(page *configservice.DescribeConformancePackComplianceOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConformancePackCompliancePagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConformancePackCompliancePagesWithContext(ctx aws.Context, input *DescribeConformancePackComplianceInput, fn func(*DescribeConformancePackComplianceOutput, bool) bool, opts ...request.Option) error

DescribeConformancePackCompliancePagesWithContext same as DescribeConformancePackCompliancePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConformancePackComplianceRequest added in v1.25.38

func (c *ConfigService) DescribeConformancePackComplianceRequest(input *DescribeConformancePackComplianceInput) (req *request.Request, output *DescribeConformancePackComplianceOutput)

DescribeConformancePackComplianceRequest generates a "aws/request.Request" representing the client's request for the DescribeConformancePackCompliance operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConformancePackCompliance for more information on using the DescribeConformancePackCompliance API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConformancePackComplianceRequest method.
req, resp := client.DescribeConformancePackComplianceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackCompliance

func (*ConfigService) DescribeConformancePackComplianceWithContext added in v1.25.38

func (c *ConfigService) DescribeConformancePackComplianceWithContext(ctx aws.Context, input *DescribeConformancePackComplianceInput, opts ...request.Option) (*DescribeConformancePackComplianceOutput, error)

DescribeConformancePackComplianceWithContext is the same as DescribeConformancePackCompliance with the addition of the ability to pass a context and additional request options.

See DescribeConformancePackCompliance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConformancePackStatus added in v1.25.38

DescribeConformancePackStatus API operation for AWS Config.

Provides one or more conformance packs deployment status.

If there are no conformance packs then you will see an empty result.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConformancePackStatus for usage and error information.

Returned Error Types:

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackStatus

func (*ConfigService) DescribeConformancePackStatusPages added in v1.38.37

func (c *ConfigService) DescribeConformancePackStatusPages(input *DescribeConformancePackStatusInput, fn func(*DescribeConformancePackStatusOutput, bool) bool) error

DescribeConformancePackStatusPages iterates over the pages of a DescribeConformancePackStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConformancePackStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConformancePackStatus operation.
pageNum := 0
err := client.DescribeConformancePackStatusPages(params,
    func(page *configservice.DescribeConformancePackStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConformancePackStatusPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConformancePackStatusPagesWithContext(ctx aws.Context, input *DescribeConformancePackStatusInput, fn func(*DescribeConformancePackStatusOutput, bool) bool, opts ...request.Option) error

DescribeConformancePackStatusPagesWithContext same as DescribeConformancePackStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConformancePackStatusRequest added in v1.25.38

func (c *ConfigService) DescribeConformancePackStatusRequest(input *DescribeConformancePackStatusInput) (req *request.Request, output *DescribeConformancePackStatusOutput)

DescribeConformancePackStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeConformancePackStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConformancePackStatus for more information on using the DescribeConformancePackStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConformancePackStatusRequest method.
req, resp := client.DescribeConformancePackStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePackStatus

func (*ConfigService) DescribeConformancePackStatusWithContext added in v1.25.38

func (c *ConfigService) DescribeConformancePackStatusWithContext(ctx aws.Context, input *DescribeConformancePackStatusInput, opts ...request.Option) (*DescribeConformancePackStatusOutput, error)

DescribeConformancePackStatusWithContext is the same as DescribeConformancePackStatus with the addition of the ability to pass a context and additional request options.

See DescribeConformancePackStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConformancePacks added in v1.25.38

func (c *ConfigService) DescribeConformancePacks(input *DescribeConformancePacksInput) (*DescribeConformancePacksOutput, error)

DescribeConformancePacks API operation for AWS Config.

Returns a list of one or more conformance packs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeConformancePacks for usage and error information.

Returned Error Types:

  • NoSuchConformancePackException You specified one or more conformance packs that do not exist.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePacks

func (*ConfigService) DescribeConformancePacksPages added in v1.38.37

func (c *ConfigService) DescribeConformancePacksPages(input *DescribeConformancePacksInput, fn func(*DescribeConformancePacksOutput, bool) bool) error

DescribeConformancePacksPages iterates over the pages of a DescribeConformancePacks operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeConformancePacks method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeConformancePacks operation.
pageNum := 0
err := client.DescribeConformancePacksPages(params,
    func(page *configservice.DescribeConformancePacksOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeConformancePacksPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeConformancePacksPagesWithContext(ctx aws.Context, input *DescribeConformancePacksInput, fn func(*DescribeConformancePacksOutput, bool) bool, opts ...request.Option) error

DescribeConformancePacksPagesWithContext same as DescribeConformancePacksPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeConformancePacksRequest added in v1.25.38

func (c *ConfigService) DescribeConformancePacksRequest(input *DescribeConformancePacksInput) (req *request.Request, output *DescribeConformancePacksOutput)

DescribeConformancePacksRequest generates a "aws/request.Request" representing the client's request for the DescribeConformancePacks operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeConformancePacks for more information on using the DescribeConformancePacks API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeConformancePacksRequest method.
req, resp := client.DescribeConformancePacksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConformancePacks

func (*ConfigService) DescribeConformancePacksWithContext added in v1.25.38

func (c *ConfigService) DescribeConformancePacksWithContext(ctx aws.Context, input *DescribeConformancePacksInput, opts ...request.Option) (*DescribeConformancePacksOutput, error)

DescribeConformancePacksWithContext is the same as DescribeConformancePacks with the addition of the ability to pass a context and additional request options.

See DescribeConformancePacks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeDeliveryChannelStatus

DescribeDeliveryChannelStatus API operation for AWS Config.

Returns the current status of the specified delivery channel. If a delivery channel is not specified, this action returns the current status of all delivery channels associated with the account.

Currently, you can specify only one delivery channel per region in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeDeliveryChannelStatus for usage and error information.

Returned Error Types:

  • NoSuchDeliveryChannelException You have specified a delivery channel that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeDeliveryChannelStatus

func (*ConfigService) DescribeDeliveryChannelStatusRequest

func (c *ConfigService) DescribeDeliveryChannelStatusRequest(input *DescribeDeliveryChannelStatusInput) (req *request.Request, output *DescribeDeliveryChannelStatusOutput)

DescribeDeliveryChannelStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeDeliveryChannelStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDeliveryChannelStatus for more information on using the DescribeDeliveryChannelStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDeliveryChannelStatusRequest method.
req, resp := client.DescribeDeliveryChannelStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeDeliveryChannelStatus

func (*ConfigService) DescribeDeliveryChannelStatusWithContext added in v1.8.0

func (c *ConfigService) DescribeDeliveryChannelStatusWithContext(ctx aws.Context, input *DescribeDeliveryChannelStatusInput, opts ...request.Option) (*DescribeDeliveryChannelStatusOutput, error)

DescribeDeliveryChannelStatusWithContext is the same as DescribeDeliveryChannelStatus with the addition of the ability to pass a context and additional request options.

See DescribeDeliveryChannelStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeDeliveryChannels

func (c *ConfigService) DescribeDeliveryChannels(input *DescribeDeliveryChannelsInput) (*DescribeDeliveryChannelsOutput, error)

DescribeDeliveryChannels API operation for AWS Config.

Returns details about the specified delivery channel. If a delivery channel is not specified, this action returns the details of all delivery channels associated with the account.

Currently, you can specify only one delivery channel per region in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeDeliveryChannels for usage and error information.

Returned Error Types:

  • NoSuchDeliveryChannelException You have specified a delivery channel that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeDeliveryChannels

func (*ConfigService) DescribeDeliveryChannelsRequest

func (c *ConfigService) DescribeDeliveryChannelsRequest(input *DescribeDeliveryChannelsInput) (req *request.Request, output *DescribeDeliveryChannelsOutput)

DescribeDeliveryChannelsRequest generates a "aws/request.Request" representing the client's request for the DescribeDeliveryChannels operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeDeliveryChannels for more information on using the DescribeDeliveryChannels API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeDeliveryChannelsRequest method.
req, resp := client.DescribeDeliveryChannelsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeDeliveryChannels

func (*ConfigService) DescribeDeliveryChannelsWithContext added in v1.8.0

func (c *ConfigService) DescribeDeliveryChannelsWithContext(ctx aws.Context, input *DescribeDeliveryChannelsInput, opts ...request.Option) (*DescribeDeliveryChannelsOutput, error)

DescribeDeliveryChannelsWithContext is the same as DescribeDeliveryChannels with the addition of the ability to pass a context and additional request options.

See DescribeDeliveryChannels for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConfigRuleStatuses added in v1.20.17

DescribeOrganizationConfigRuleStatuses API operation for AWS Config.

Provides organization Config rule deployment status for an organization.

The status is not considered successful until organization Config rule is successfully deployed in all the member accounts with an exception of excluded accounts.

When you specify the limit and the next token, you receive a paginated response. Limit and next token are not applicable if you specify organization Config rule names. It is only applicable, when you request all the organization Config rules.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeOrganizationConfigRuleStatuses for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConfigRuleException The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRuleStatuses

func (*ConfigService) DescribeOrganizationConfigRuleStatusesPages added in v1.38.37

func (c *ConfigService) DescribeOrganizationConfigRuleStatusesPages(input *DescribeOrganizationConfigRuleStatusesInput, fn func(*DescribeOrganizationConfigRuleStatusesOutput, bool) bool) error

DescribeOrganizationConfigRuleStatusesPages iterates over the pages of a DescribeOrganizationConfigRuleStatuses operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOrganizationConfigRuleStatuses method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOrganizationConfigRuleStatuses operation.
pageNum := 0
err := client.DescribeOrganizationConfigRuleStatusesPages(params,
    func(page *configservice.DescribeOrganizationConfigRuleStatusesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeOrganizationConfigRuleStatusesPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeOrganizationConfigRuleStatusesPagesWithContext(ctx aws.Context, input *DescribeOrganizationConfigRuleStatusesInput, fn func(*DescribeOrganizationConfigRuleStatusesOutput, bool) bool, opts ...request.Option) error

DescribeOrganizationConfigRuleStatusesPagesWithContext same as DescribeOrganizationConfigRuleStatusesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConfigRuleStatusesRequest added in v1.20.17

func (c *ConfigService) DescribeOrganizationConfigRuleStatusesRequest(input *DescribeOrganizationConfigRuleStatusesInput) (req *request.Request, output *DescribeOrganizationConfigRuleStatusesOutput)

DescribeOrganizationConfigRuleStatusesRequest generates a "aws/request.Request" representing the client's request for the DescribeOrganizationConfigRuleStatuses operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOrganizationConfigRuleStatuses for more information on using the DescribeOrganizationConfigRuleStatuses API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOrganizationConfigRuleStatusesRequest method.
req, resp := client.DescribeOrganizationConfigRuleStatusesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRuleStatuses

func (*ConfigService) DescribeOrganizationConfigRuleStatusesWithContext added in v1.20.17

func (c *ConfigService) DescribeOrganizationConfigRuleStatusesWithContext(ctx aws.Context, input *DescribeOrganizationConfigRuleStatusesInput, opts ...request.Option) (*DescribeOrganizationConfigRuleStatusesOutput, error)

DescribeOrganizationConfigRuleStatusesWithContext is the same as DescribeOrganizationConfigRuleStatuses with the addition of the ability to pass a context and additional request options.

See DescribeOrganizationConfigRuleStatuses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConfigRules added in v1.20.17

DescribeOrganizationConfigRules API operation for AWS Config.

Returns a list of organization Config rules.

When you specify the limit and the next token, you receive a paginated response.

Limit and next token are not applicable if you specify organization Config rule names. It is only applicable, when you request all the organization Config rules.

For accounts within an organization

If you deploy an organizational rule or conformance pack in an organization administrator account, and then establish a delegated administrator and deploy an organizational rule or conformance pack in the delegated administrator account, you won't be able to see the organizational rule or conformance pack in the organization administrator account from the delegated administrator account or see the organizational rule or conformance pack in the delegated administrator account from organization administrator account. The DescribeOrganizationConfigRules and DescribeOrganizationConformancePacks APIs can only see and interact with the organization-related resource that were deployed from within the account calling those APIs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeOrganizationConfigRules for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConfigRuleException The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidLimitException The specified limit is outside the allowable range.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRules

func (*ConfigService) DescribeOrganizationConfigRulesPages added in v1.38.37

func (c *ConfigService) DescribeOrganizationConfigRulesPages(input *DescribeOrganizationConfigRulesInput, fn func(*DescribeOrganizationConfigRulesOutput, bool) bool) error

DescribeOrganizationConfigRulesPages iterates over the pages of a DescribeOrganizationConfigRules operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOrganizationConfigRules method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOrganizationConfigRules operation.
pageNum := 0
err := client.DescribeOrganizationConfigRulesPages(params,
    func(page *configservice.DescribeOrganizationConfigRulesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeOrganizationConfigRulesPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeOrganizationConfigRulesPagesWithContext(ctx aws.Context, input *DescribeOrganizationConfigRulesInput, fn func(*DescribeOrganizationConfigRulesOutput, bool) bool, opts ...request.Option) error

DescribeOrganizationConfigRulesPagesWithContext same as DescribeOrganizationConfigRulesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConfigRulesRequest added in v1.20.17

func (c *ConfigService) DescribeOrganizationConfigRulesRequest(input *DescribeOrganizationConfigRulesInput) (req *request.Request, output *DescribeOrganizationConfigRulesOutput)

DescribeOrganizationConfigRulesRequest generates a "aws/request.Request" representing the client's request for the DescribeOrganizationConfigRules operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOrganizationConfigRules for more information on using the DescribeOrganizationConfigRules API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOrganizationConfigRulesRequest method.
req, resp := client.DescribeOrganizationConfigRulesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConfigRules

func (*ConfigService) DescribeOrganizationConfigRulesWithContext added in v1.20.17

func (c *ConfigService) DescribeOrganizationConfigRulesWithContext(ctx aws.Context, input *DescribeOrganizationConfigRulesInput, opts ...request.Option) (*DescribeOrganizationConfigRulesOutput, error)

DescribeOrganizationConfigRulesWithContext is the same as DescribeOrganizationConfigRules with the addition of the ability to pass a context and additional request options.

See DescribeOrganizationConfigRules for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConformancePackStatuses added in v1.25.38

DescribeOrganizationConformancePackStatuses API operation for AWS Config.

Provides organization conformance pack deployment status for an organization.

The status is not considered successful until organization conformance pack is successfully deployed in all the member accounts with an exception of excluded accounts.

When you specify the limit and the next token, you receive a paginated response. Limit and next token are not applicable if you specify organization conformance pack names. They are only applicable, when you request all the organization conformance packs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeOrganizationConformancePackStatuses for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConformancePackException Config organization conformance pack that you passed in the filter does not exist.

    For DeleteOrganizationConformancePack, you tried to delete an organization conformance pack that does not exist.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePackStatuses

func (*ConfigService) DescribeOrganizationConformancePackStatusesPages added in v1.38.37

func (c *ConfigService) DescribeOrganizationConformancePackStatusesPages(input *DescribeOrganizationConformancePackStatusesInput, fn func(*DescribeOrganizationConformancePackStatusesOutput, bool) bool) error

DescribeOrganizationConformancePackStatusesPages iterates over the pages of a DescribeOrganizationConformancePackStatuses operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOrganizationConformancePackStatuses method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOrganizationConformancePackStatuses operation.
pageNum := 0
err := client.DescribeOrganizationConformancePackStatusesPages(params,
    func(page *configservice.DescribeOrganizationConformancePackStatusesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeOrganizationConformancePackStatusesPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeOrganizationConformancePackStatusesPagesWithContext(ctx aws.Context, input *DescribeOrganizationConformancePackStatusesInput, fn func(*DescribeOrganizationConformancePackStatusesOutput, bool) bool, opts ...request.Option) error

DescribeOrganizationConformancePackStatusesPagesWithContext same as DescribeOrganizationConformancePackStatusesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConformancePackStatusesRequest added in v1.25.38

func (c *ConfigService) DescribeOrganizationConformancePackStatusesRequest(input *DescribeOrganizationConformancePackStatusesInput) (req *request.Request, output *DescribeOrganizationConformancePackStatusesOutput)

DescribeOrganizationConformancePackStatusesRequest generates a "aws/request.Request" representing the client's request for the DescribeOrganizationConformancePackStatuses operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOrganizationConformancePackStatuses for more information on using the DescribeOrganizationConformancePackStatuses API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOrganizationConformancePackStatusesRequest method.
req, resp := client.DescribeOrganizationConformancePackStatusesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePackStatuses

func (*ConfigService) DescribeOrganizationConformancePackStatusesWithContext added in v1.25.38

func (c *ConfigService) DescribeOrganizationConformancePackStatusesWithContext(ctx aws.Context, input *DescribeOrganizationConformancePackStatusesInput, opts ...request.Option) (*DescribeOrganizationConformancePackStatusesOutput, error)

DescribeOrganizationConformancePackStatusesWithContext is the same as DescribeOrganizationConformancePackStatuses with the addition of the ability to pass a context and additional request options.

See DescribeOrganizationConformancePackStatuses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConformancePacks added in v1.25.38

DescribeOrganizationConformancePacks API operation for AWS Config.

Returns a list of organization conformance packs.

When you specify the limit and the next token, you receive a paginated response.

Limit and next token are not applicable if you specify organization conformance packs names. They are only applicable, when you request all the organization conformance packs.

For accounts within an organization

If you deploy an organizational rule or conformance pack in an organization administrator account, and then establish a delegated administrator and deploy an organizational rule or conformance pack in the delegated administrator account, you won't be able to see the organizational rule or conformance pack in the organization administrator account from the delegated administrator account or see the organizational rule or conformance pack in the delegated administrator account from organization administrator account. The DescribeOrganizationConfigRules and DescribeOrganizationConformancePacks APIs can only see and interact with the organization-related resource that were deployed from within the account calling those APIs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeOrganizationConformancePacks for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConformancePackException Config organization conformance pack that you passed in the filter does not exist.

    For DeleteOrganizationConformancePack, you tried to delete an organization conformance pack that does not exist.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidLimitException The specified limit is outside the allowable range.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePacks

func (*ConfigService) DescribeOrganizationConformancePacksPages added in v1.38.37

func (c *ConfigService) DescribeOrganizationConformancePacksPages(input *DescribeOrganizationConformancePacksInput, fn func(*DescribeOrganizationConformancePacksOutput, bool) bool) error

DescribeOrganizationConformancePacksPages iterates over the pages of a DescribeOrganizationConformancePacks operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeOrganizationConformancePacks method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeOrganizationConformancePacks operation.
pageNum := 0
err := client.DescribeOrganizationConformancePacksPages(params,
    func(page *configservice.DescribeOrganizationConformancePacksOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeOrganizationConformancePacksPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeOrganizationConformancePacksPagesWithContext(ctx aws.Context, input *DescribeOrganizationConformancePacksInput, fn func(*DescribeOrganizationConformancePacksOutput, bool) bool, opts ...request.Option) error

DescribeOrganizationConformancePacksPagesWithContext same as DescribeOrganizationConformancePacksPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeOrganizationConformancePacksRequest added in v1.25.38

func (c *ConfigService) DescribeOrganizationConformancePacksRequest(input *DescribeOrganizationConformancePacksInput) (req *request.Request, output *DescribeOrganizationConformancePacksOutput)

DescribeOrganizationConformancePacksRequest generates a "aws/request.Request" representing the client's request for the DescribeOrganizationConformancePacks operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeOrganizationConformancePacks for more information on using the DescribeOrganizationConformancePacks API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeOrganizationConformancePacksRequest method.
req, resp := client.DescribeOrganizationConformancePacksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeOrganizationConformancePacks

func (*ConfigService) DescribeOrganizationConformancePacksWithContext added in v1.25.38

func (c *ConfigService) DescribeOrganizationConformancePacksWithContext(ctx aws.Context, input *DescribeOrganizationConformancePacksInput, opts ...request.Option) (*DescribeOrganizationConformancePacksOutput, error)

DescribeOrganizationConformancePacksWithContext is the same as DescribeOrganizationConformancePacks with the addition of the ability to pass a context and additional request options.

See DescribeOrganizationConformancePacks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribePendingAggregationRequests added in v1.13.28

DescribePendingAggregationRequests API operation for AWS Config.

Returns a list of all pending aggregation requests.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribePendingAggregationRequests for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidLimitException The specified limit is outside the allowable range.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribePendingAggregationRequests

func (*ConfigService) DescribePendingAggregationRequestsPages added in v1.38.37

func (c *ConfigService) DescribePendingAggregationRequestsPages(input *DescribePendingAggregationRequestsInput, fn func(*DescribePendingAggregationRequestsOutput, bool) bool) error

DescribePendingAggregationRequestsPages iterates over the pages of a DescribePendingAggregationRequests operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribePendingAggregationRequests method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribePendingAggregationRequests operation.
pageNum := 0
err := client.DescribePendingAggregationRequestsPages(params,
    func(page *configservice.DescribePendingAggregationRequestsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribePendingAggregationRequestsPagesWithContext added in v1.38.37

func (c *ConfigService) DescribePendingAggregationRequestsPagesWithContext(ctx aws.Context, input *DescribePendingAggregationRequestsInput, fn func(*DescribePendingAggregationRequestsOutput, bool) bool, opts ...request.Option) error

DescribePendingAggregationRequestsPagesWithContext same as DescribePendingAggregationRequestsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribePendingAggregationRequestsRequest added in v1.13.28

func (c *ConfigService) DescribePendingAggregationRequestsRequest(input *DescribePendingAggregationRequestsInput) (req *request.Request, output *DescribePendingAggregationRequestsOutput)

DescribePendingAggregationRequestsRequest generates a "aws/request.Request" representing the client's request for the DescribePendingAggregationRequests operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribePendingAggregationRequests for more information on using the DescribePendingAggregationRequests API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribePendingAggregationRequestsRequest method.
req, resp := client.DescribePendingAggregationRequestsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribePendingAggregationRequests

func (*ConfigService) DescribePendingAggregationRequestsWithContext added in v1.13.28

func (c *ConfigService) DescribePendingAggregationRequestsWithContext(ctx aws.Context, input *DescribePendingAggregationRequestsInput, opts ...request.Option) (*DescribePendingAggregationRequestsOutput, error)

DescribePendingAggregationRequestsWithContext is the same as DescribePendingAggregationRequests with the addition of the ability to pass a context and additional request options.

See DescribePendingAggregationRequests for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRemediationConfigurations added in v1.18.2

DescribeRemediationConfigurations API operation for AWS Config.

Returns the details of one or more remediation configurations.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeRemediationConfigurations for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRemediationConfigurations

func (*ConfigService) DescribeRemediationConfigurationsRequest added in v1.18.2

func (c *ConfigService) DescribeRemediationConfigurationsRequest(input *DescribeRemediationConfigurationsInput) (req *request.Request, output *DescribeRemediationConfigurationsOutput)

DescribeRemediationConfigurationsRequest generates a "aws/request.Request" representing the client's request for the DescribeRemediationConfigurations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeRemediationConfigurations for more information on using the DescribeRemediationConfigurations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeRemediationConfigurationsRequest method.
req, resp := client.DescribeRemediationConfigurationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRemediationConfigurations

func (*ConfigService) DescribeRemediationConfigurationsWithContext added in v1.18.2

func (c *ConfigService) DescribeRemediationConfigurationsWithContext(ctx aws.Context, input *DescribeRemediationConfigurationsInput, opts ...request.Option) (*DescribeRemediationConfigurationsOutput, error)

DescribeRemediationConfigurationsWithContext is the same as DescribeRemediationConfigurations with the addition of the ability to pass a context and additional request options.

See DescribeRemediationConfigurations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRemediationExceptions added in v1.23.16

DescribeRemediationExceptions API operation for AWS Config.

Returns the details of one or more remediation exceptions. A detailed view of a remediation exception for a set of resources that includes an explanation of an exception and the time when the exception will be deleted. When you specify the limit and the next token, you receive a paginated response.

Config generates a remediation exception when a problem occurs executing a remediation action to a specific resource. Remediation exceptions blocks auto-remediation until the exception is cleared.

When you specify the limit and the next token, you receive a paginated response.

Limit and next token are not applicable if you request resources in batch. It is only applicable, when you request all resources.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeRemediationExceptions for usage and error information.

Returned Error Types:

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRemediationExceptions

func (*ConfigService) DescribeRemediationExceptionsPages added in v1.23.16

func (c *ConfigService) DescribeRemediationExceptionsPages(input *DescribeRemediationExceptionsInput, fn func(*DescribeRemediationExceptionsOutput, bool) bool) error

DescribeRemediationExceptionsPages iterates over the pages of a DescribeRemediationExceptions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeRemediationExceptions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeRemediationExceptions operation.
pageNum := 0
err := client.DescribeRemediationExceptionsPages(params,
    func(page *configservice.DescribeRemediationExceptionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeRemediationExceptionsPagesWithContext added in v1.23.16

func (c *ConfigService) DescribeRemediationExceptionsPagesWithContext(ctx aws.Context, input *DescribeRemediationExceptionsInput, fn func(*DescribeRemediationExceptionsOutput, bool) bool, opts ...request.Option) error

DescribeRemediationExceptionsPagesWithContext same as DescribeRemediationExceptionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRemediationExceptionsRequest added in v1.23.16

func (c *ConfigService) DescribeRemediationExceptionsRequest(input *DescribeRemediationExceptionsInput) (req *request.Request, output *DescribeRemediationExceptionsOutput)

DescribeRemediationExceptionsRequest generates a "aws/request.Request" representing the client's request for the DescribeRemediationExceptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeRemediationExceptions for more information on using the DescribeRemediationExceptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeRemediationExceptionsRequest method.
req, resp := client.DescribeRemediationExceptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRemediationExceptions

func (*ConfigService) DescribeRemediationExceptionsWithContext added in v1.23.16

func (c *ConfigService) DescribeRemediationExceptionsWithContext(ctx aws.Context, input *DescribeRemediationExceptionsInput, opts ...request.Option) (*DescribeRemediationExceptionsOutput, error)

DescribeRemediationExceptionsWithContext is the same as DescribeRemediationExceptions with the addition of the ability to pass a context and additional request options.

See DescribeRemediationExceptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRemediationExecutionStatus added in v1.18.2

DescribeRemediationExecutionStatus API operation for AWS Config.

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. When you specify the limit and the next token, you receive a paginated response.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeRemediationExecutionStatus for usage and error information.

Returned Error Types:

  • NoSuchRemediationConfigurationException You specified an Config rule without a remediation configuration.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRemediationExecutionStatus

func (*ConfigService) DescribeRemediationExecutionStatusPages added in v1.18.2

func (c *ConfigService) DescribeRemediationExecutionStatusPages(input *DescribeRemediationExecutionStatusInput, fn func(*DescribeRemediationExecutionStatusOutput, bool) bool) error

DescribeRemediationExecutionStatusPages iterates over the pages of a DescribeRemediationExecutionStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeRemediationExecutionStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeRemediationExecutionStatus operation.
pageNum := 0
err := client.DescribeRemediationExecutionStatusPages(params,
    func(page *configservice.DescribeRemediationExecutionStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeRemediationExecutionStatusPagesWithContext added in v1.18.2

func (c *ConfigService) DescribeRemediationExecutionStatusPagesWithContext(ctx aws.Context, input *DescribeRemediationExecutionStatusInput, fn func(*DescribeRemediationExecutionStatusOutput, bool) bool, opts ...request.Option) error

DescribeRemediationExecutionStatusPagesWithContext same as DescribeRemediationExecutionStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRemediationExecutionStatusRequest added in v1.18.2

func (c *ConfigService) DescribeRemediationExecutionStatusRequest(input *DescribeRemediationExecutionStatusInput) (req *request.Request, output *DescribeRemediationExecutionStatusOutput)

DescribeRemediationExecutionStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeRemediationExecutionStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeRemediationExecutionStatus for more information on using the DescribeRemediationExecutionStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeRemediationExecutionStatusRequest method.
req, resp := client.DescribeRemediationExecutionStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRemediationExecutionStatus

func (*ConfigService) DescribeRemediationExecutionStatusWithContext added in v1.18.2

func (c *ConfigService) DescribeRemediationExecutionStatusWithContext(ctx aws.Context, input *DescribeRemediationExecutionStatusInput, opts ...request.Option) (*DescribeRemediationExecutionStatusOutput, error)

DescribeRemediationExecutionStatusWithContext is the same as DescribeRemediationExecutionStatus with the addition of the ability to pass a context and additional request options.

See DescribeRemediationExecutionStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRetentionConfigurations added in v1.13.56

DescribeRetentionConfigurations API operation for AWS Config.

Returns the details of one or more retention configurations. If the retention configuration name is not specified, this action returns the details for all the retention configurations for that account.

Currently, Config supports only one retention configuration per region in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation DescribeRetentionConfigurations for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • NoSuchRetentionConfigurationException You have specified a retention configuration that does not exist.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRetentionConfigurations

func (*ConfigService) DescribeRetentionConfigurationsPages added in v1.38.37

func (c *ConfigService) DescribeRetentionConfigurationsPages(input *DescribeRetentionConfigurationsInput, fn func(*DescribeRetentionConfigurationsOutput, bool) bool) error

DescribeRetentionConfigurationsPages iterates over the pages of a DescribeRetentionConfigurations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeRetentionConfigurations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeRetentionConfigurations operation.
pageNum := 0
err := client.DescribeRetentionConfigurationsPages(params,
    func(page *configservice.DescribeRetentionConfigurationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) DescribeRetentionConfigurationsPagesWithContext added in v1.38.37

func (c *ConfigService) DescribeRetentionConfigurationsPagesWithContext(ctx aws.Context, input *DescribeRetentionConfigurationsInput, fn func(*DescribeRetentionConfigurationsOutput, bool) bool, opts ...request.Option) error

DescribeRetentionConfigurationsPagesWithContext same as DescribeRetentionConfigurationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) DescribeRetentionConfigurationsRequest added in v1.13.56

func (c *ConfigService) DescribeRetentionConfigurationsRequest(input *DescribeRetentionConfigurationsInput) (req *request.Request, output *DescribeRetentionConfigurationsOutput)

DescribeRetentionConfigurationsRequest generates a "aws/request.Request" representing the client's request for the DescribeRetentionConfigurations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeRetentionConfigurations for more information on using the DescribeRetentionConfigurations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeRetentionConfigurationsRequest method.
req, resp := client.DescribeRetentionConfigurationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeRetentionConfigurations

func (*ConfigService) DescribeRetentionConfigurationsWithContext added in v1.13.56

func (c *ConfigService) DescribeRetentionConfigurationsWithContext(ctx aws.Context, input *DescribeRetentionConfigurationsInput, opts ...request.Option) (*DescribeRetentionConfigurationsOutput, error)

DescribeRetentionConfigurationsWithContext is the same as DescribeRetentionConfigurations with the addition of the ability to pass a context and additional request options.

See DescribeRetentionConfigurations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateComplianceDetailsByConfigRule added in v1.13.28

GetAggregateComplianceDetailsByConfigRule API operation for AWS Config.

Returns the evaluation results for the specified Config rule for a specific resource in a rule. The results indicate which Amazon Web Services resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule.

The results can return an empty result page. But if you have a nextToken, the results are displayed on the next page.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetAggregateComplianceDetailsByConfigRule for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateComplianceDetailsByConfigRule

func (*ConfigService) GetAggregateComplianceDetailsByConfigRulePages added in v1.38.37

func (c *ConfigService) GetAggregateComplianceDetailsByConfigRulePages(input *GetAggregateComplianceDetailsByConfigRuleInput, fn func(*GetAggregateComplianceDetailsByConfigRuleOutput, bool) bool) error

GetAggregateComplianceDetailsByConfigRulePages iterates over the pages of a GetAggregateComplianceDetailsByConfigRule operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetAggregateComplianceDetailsByConfigRule method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetAggregateComplianceDetailsByConfigRule operation.
pageNum := 0
err := client.GetAggregateComplianceDetailsByConfigRulePages(params,
    func(page *configservice.GetAggregateComplianceDetailsByConfigRuleOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetAggregateComplianceDetailsByConfigRulePagesWithContext added in v1.38.37

func (c *ConfigService) GetAggregateComplianceDetailsByConfigRulePagesWithContext(ctx aws.Context, input *GetAggregateComplianceDetailsByConfigRuleInput, fn func(*GetAggregateComplianceDetailsByConfigRuleOutput, bool) bool, opts ...request.Option) error

GetAggregateComplianceDetailsByConfigRulePagesWithContext same as GetAggregateComplianceDetailsByConfigRulePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateComplianceDetailsByConfigRuleRequest added in v1.13.28

func (c *ConfigService) GetAggregateComplianceDetailsByConfigRuleRequest(input *GetAggregateComplianceDetailsByConfigRuleInput) (req *request.Request, output *GetAggregateComplianceDetailsByConfigRuleOutput)

GetAggregateComplianceDetailsByConfigRuleRequest generates a "aws/request.Request" representing the client's request for the GetAggregateComplianceDetailsByConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetAggregateComplianceDetailsByConfigRule for more information on using the GetAggregateComplianceDetailsByConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetAggregateComplianceDetailsByConfigRuleRequest method.
req, resp := client.GetAggregateComplianceDetailsByConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateComplianceDetailsByConfigRule

func (*ConfigService) GetAggregateComplianceDetailsByConfigRuleWithContext added in v1.13.28

func (c *ConfigService) GetAggregateComplianceDetailsByConfigRuleWithContext(ctx aws.Context, input *GetAggregateComplianceDetailsByConfigRuleInput, opts ...request.Option) (*GetAggregateComplianceDetailsByConfigRuleOutput, error)

GetAggregateComplianceDetailsByConfigRuleWithContext is the same as GetAggregateComplianceDetailsByConfigRule with the addition of the ability to pass a context and additional request options.

See GetAggregateComplianceDetailsByConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateConfigRuleComplianceSummary added in v1.13.28

GetAggregateConfigRuleComplianceSummary API operation for AWS Config.

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

The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetAggregateConfigRuleComplianceSummary for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateConfigRuleComplianceSummary

func (*ConfigService) GetAggregateConfigRuleComplianceSummaryPages added in v1.38.37

func (c *ConfigService) GetAggregateConfigRuleComplianceSummaryPages(input *GetAggregateConfigRuleComplianceSummaryInput, fn func(*GetAggregateConfigRuleComplianceSummaryOutput, bool) bool) error

GetAggregateConfigRuleComplianceSummaryPages iterates over the pages of a GetAggregateConfigRuleComplianceSummary operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetAggregateConfigRuleComplianceSummary method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetAggregateConfigRuleComplianceSummary operation.
pageNum := 0
err := client.GetAggregateConfigRuleComplianceSummaryPages(params,
    func(page *configservice.GetAggregateConfigRuleComplianceSummaryOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetAggregateConfigRuleComplianceSummaryPagesWithContext added in v1.38.37

func (c *ConfigService) GetAggregateConfigRuleComplianceSummaryPagesWithContext(ctx aws.Context, input *GetAggregateConfigRuleComplianceSummaryInput, fn func(*GetAggregateConfigRuleComplianceSummaryOutput, bool) bool, opts ...request.Option) error

GetAggregateConfigRuleComplianceSummaryPagesWithContext same as GetAggregateConfigRuleComplianceSummaryPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateConfigRuleComplianceSummaryRequest added in v1.13.28

func (c *ConfigService) GetAggregateConfigRuleComplianceSummaryRequest(input *GetAggregateConfigRuleComplianceSummaryInput) (req *request.Request, output *GetAggregateConfigRuleComplianceSummaryOutput)

GetAggregateConfigRuleComplianceSummaryRequest generates a "aws/request.Request" representing the client's request for the GetAggregateConfigRuleComplianceSummary operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetAggregateConfigRuleComplianceSummary for more information on using the GetAggregateConfigRuleComplianceSummary API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetAggregateConfigRuleComplianceSummaryRequest method.
req, resp := client.GetAggregateConfigRuleComplianceSummaryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateConfigRuleComplianceSummary

func (*ConfigService) GetAggregateConfigRuleComplianceSummaryWithContext added in v1.13.28

func (c *ConfigService) GetAggregateConfigRuleComplianceSummaryWithContext(ctx aws.Context, input *GetAggregateConfigRuleComplianceSummaryInput, opts ...request.Option) (*GetAggregateConfigRuleComplianceSummaryOutput, error)

GetAggregateConfigRuleComplianceSummaryWithContext is the same as GetAggregateConfigRuleComplianceSummary with the addition of the ability to pass a context and additional request options.

See GetAggregateConfigRuleComplianceSummary for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateConformancePackComplianceSummary added in v1.38.9

GetAggregateConformancePackComplianceSummary API operation for AWS Config.

Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator. You can filter based on Amazon Web Services account ID or Amazon Web Services Region.

The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetAggregateConformancePackComplianceSummary for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateConformancePackComplianceSummary

func (*ConfigService) GetAggregateConformancePackComplianceSummaryPages added in v1.38.37

func (c *ConfigService) GetAggregateConformancePackComplianceSummaryPages(input *GetAggregateConformancePackComplianceSummaryInput, fn func(*GetAggregateConformancePackComplianceSummaryOutput, bool) bool) error

GetAggregateConformancePackComplianceSummaryPages iterates over the pages of a GetAggregateConformancePackComplianceSummary operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetAggregateConformancePackComplianceSummary method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetAggregateConformancePackComplianceSummary operation.
pageNum := 0
err := client.GetAggregateConformancePackComplianceSummaryPages(params,
    func(page *configservice.GetAggregateConformancePackComplianceSummaryOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetAggregateConformancePackComplianceSummaryPagesWithContext added in v1.38.37

func (c *ConfigService) GetAggregateConformancePackComplianceSummaryPagesWithContext(ctx aws.Context, input *GetAggregateConformancePackComplianceSummaryInput, fn func(*GetAggregateConformancePackComplianceSummaryOutput, bool) bool, opts ...request.Option) error

GetAggregateConformancePackComplianceSummaryPagesWithContext same as GetAggregateConformancePackComplianceSummaryPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateConformancePackComplianceSummaryRequest added in v1.38.9

func (c *ConfigService) GetAggregateConformancePackComplianceSummaryRequest(input *GetAggregateConformancePackComplianceSummaryInput) (req *request.Request, output *GetAggregateConformancePackComplianceSummaryOutput)

GetAggregateConformancePackComplianceSummaryRequest generates a "aws/request.Request" representing the client's request for the GetAggregateConformancePackComplianceSummary operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetAggregateConformancePackComplianceSummary for more information on using the GetAggregateConformancePackComplianceSummary API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetAggregateConformancePackComplianceSummaryRequest method.
req, resp := client.GetAggregateConformancePackComplianceSummaryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateConformancePackComplianceSummary

func (*ConfigService) GetAggregateConformancePackComplianceSummaryWithContext added in v1.38.9

func (c *ConfigService) GetAggregateConformancePackComplianceSummaryWithContext(ctx aws.Context, input *GetAggregateConformancePackComplianceSummaryInput, opts ...request.Option) (*GetAggregateConformancePackComplianceSummaryOutput, error)

GetAggregateConformancePackComplianceSummaryWithContext is the same as GetAggregateConformancePackComplianceSummary with the addition of the ability to pass a context and additional request options.

See GetAggregateConformancePackComplianceSummary for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateDiscoveredResourceCounts added in v1.15.79

GetAggregateDiscoveredResourceCounts API operation for AWS Config.

Returns the resource counts across accounts and regions that are present in your Config aggregator. You can request the resource counts by providing filters and GroupByKey.

For example, if the input contains accountID 12345678910 and region us-east-1 in filters, the API returns the count of resources in account ID 12345678910 and region us-east-1. If the input contains ACCOUNT_ID as a GroupByKey, the API returns resource counts for all source accounts that are present in your aggregator.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetAggregateDiscoveredResourceCounts for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateDiscoveredResourceCounts

func (*ConfigService) GetAggregateDiscoveredResourceCountsPages added in v1.38.37

func (c *ConfigService) GetAggregateDiscoveredResourceCountsPages(input *GetAggregateDiscoveredResourceCountsInput, fn func(*GetAggregateDiscoveredResourceCountsOutput, bool) bool) error

GetAggregateDiscoveredResourceCountsPages iterates over the pages of a GetAggregateDiscoveredResourceCounts operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetAggregateDiscoveredResourceCounts method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetAggregateDiscoveredResourceCounts operation.
pageNum := 0
err := client.GetAggregateDiscoveredResourceCountsPages(params,
    func(page *configservice.GetAggregateDiscoveredResourceCountsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetAggregateDiscoveredResourceCountsPagesWithContext added in v1.38.37

func (c *ConfigService) GetAggregateDiscoveredResourceCountsPagesWithContext(ctx aws.Context, input *GetAggregateDiscoveredResourceCountsInput, fn func(*GetAggregateDiscoveredResourceCountsOutput, bool) bool, opts ...request.Option) error

GetAggregateDiscoveredResourceCountsPagesWithContext same as GetAggregateDiscoveredResourceCountsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateDiscoveredResourceCountsRequest added in v1.15.79

func (c *ConfigService) GetAggregateDiscoveredResourceCountsRequest(input *GetAggregateDiscoveredResourceCountsInput) (req *request.Request, output *GetAggregateDiscoveredResourceCountsOutput)

GetAggregateDiscoveredResourceCountsRequest generates a "aws/request.Request" representing the client's request for the GetAggregateDiscoveredResourceCounts operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetAggregateDiscoveredResourceCounts for more information on using the GetAggregateDiscoveredResourceCounts API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetAggregateDiscoveredResourceCountsRequest method.
req, resp := client.GetAggregateDiscoveredResourceCountsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateDiscoveredResourceCounts

func (*ConfigService) GetAggregateDiscoveredResourceCountsWithContext added in v1.15.79

func (c *ConfigService) GetAggregateDiscoveredResourceCountsWithContext(ctx aws.Context, input *GetAggregateDiscoveredResourceCountsInput, opts ...request.Option) (*GetAggregateDiscoveredResourceCountsOutput, error)

GetAggregateDiscoveredResourceCountsWithContext is the same as GetAggregateDiscoveredResourceCounts with the addition of the ability to pass a context and additional request options.

See GetAggregateDiscoveredResourceCounts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetAggregateResourceConfig added in v1.15.79

func (c *ConfigService) GetAggregateResourceConfig(input *GetAggregateResourceConfigInput) (*GetAggregateResourceConfigOutput, error)

GetAggregateResourceConfig API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetAggregateResourceConfig for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

  • OversizedConfigurationItemException The configuration item size is outside the allowable range.

  • ResourceNotDiscoveredException You have specified a resource that is either unknown or has not been discovered.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateResourceConfig

func (*ConfigService) GetAggregateResourceConfigRequest added in v1.15.79

func (c *ConfigService) GetAggregateResourceConfigRequest(input *GetAggregateResourceConfigInput) (req *request.Request, output *GetAggregateResourceConfigOutput)

GetAggregateResourceConfigRequest generates a "aws/request.Request" representing the client's request for the GetAggregateResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetAggregateResourceConfig for more information on using the GetAggregateResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetAggregateResourceConfigRequest method.
req, resp := client.GetAggregateResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetAggregateResourceConfig

func (*ConfigService) GetAggregateResourceConfigWithContext added in v1.15.79

func (c *ConfigService) GetAggregateResourceConfigWithContext(ctx aws.Context, input *GetAggregateResourceConfigInput, opts ...request.Option) (*GetAggregateResourceConfigOutput, error)

GetAggregateResourceConfigWithContext is the same as GetAggregateResourceConfig with the addition of the ability to pass a context and additional request options.

See GetAggregateResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetComplianceDetailsByConfigRule added in v0.9.13

GetComplianceDetailsByConfigRule API operation for AWS Config.

Returns the evaluation results for the specified Config rule. The results indicate which Amazon Web Services resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetComplianceDetailsByConfigRule for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceDetailsByConfigRule

func (*ConfigService) GetComplianceDetailsByConfigRulePages added in v1.38.37

func (c *ConfigService) GetComplianceDetailsByConfigRulePages(input *GetComplianceDetailsByConfigRuleInput, fn func(*GetComplianceDetailsByConfigRuleOutput, bool) bool) error

GetComplianceDetailsByConfigRulePages iterates over the pages of a GetComplianceDetailsByConfigRule operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetComplianceDetailsByConfigRule method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetComplianceDetailsByConfigRule operation.
pageNum := 0
err := client.GetComplianceDetailsByConfigRulePages(params,
    func(page *configservice.GetComplianceDetailsByConfigRuleOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetComplianceDetailsByConfigRulePagesWithContext added in v1.38.37

func (c *ConfigService) GetComplianceDetailsByConfigRulePagesWithContext(ctx aws.Context, input *GetComplianceDetailsByConfigRuleInput, fn func(*GetComplianceDetailsByConfigRuleOutput, bool) bool, opts ...request.Option) error

GetComplianceDetailsByConfigRulePagesWithContext same as GetComplianceDetailsByConfigRulePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetComplianceDetailsByConfigRuleRequest added in v0.9.13

func (c *ConfigService) GetComplianceDetailsByConfigRuleRequest(input *GetComplianceDetailsByConfigRuleInput) (req *request.Request, output *GetComplianceDetailsByConfigRuleOutput)

GetComplianceDetailsByConfigRuleRequest generates a "aws/request.Request" representing the client's request for the GetComplianceDetailsByConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetComplianceDetailsByConfigRule for more information on using the GetComplianceDetailsByConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetComplianceDetailsByConfigRuleRequest method.
req, resp := client.GetComplianceDetailsByConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceDetailsByConfigRule

func (*ConfigService) GetComplianceDetailsByConfigRuleWithContext added in v1.8.0

func (c *ConfigService) GetComplianceDetailsByConfigRuleWithContext(ctx aws.Context, input *GetComplianceDetailsByConfigRuleInput, opts ...request.Option) (*GetComplianceDetailsByConfigRuleOutput, error)

GetComplianceDetailsByConfigRuleWithContext is the same as GetComplianceDetailsByConfigRule with the addition of the ability to pass a context and additional request options.

See GetComplianceDetailsByConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetComplianceDetailsByResource added in v0.9.13

GetComplianceDetailsByResource API operation for AWS Config.

Returns the evaluation results for the specified Amazon Web Services resource. The results indicate which Config rules were used to evaluate the resource, when each rule was last invoked, and whether the resource complies with each rule.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetComplianceDetailsByResource for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceDetailsByResource

func (*ConfigService) GetComplianceDetailsByResourcePages added in v1.38.37

func (c *ConfigService) GetComplianceDetailsByResourcePages(input *GetComplianceDetailsByResourceInput, fn func(*GetComplianceDetailsByResourceOutput, bool) bool) error

GetComplianceDetailsByResourcePages iterates over the pages of a GetComplianceDetailsByResource operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetComplianceDetailsByResource method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetComplianceDetailsByResource operation.
pageNum := 0
err := client.GetComplianceDetailsByResourcePages(params,
    func(page *configservice.GetComplianceDetailsByResourceOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetComplianceDetailsByResourcePagesWithContext added in v1.38.37

func (c *ConfigService) GetComplianceDetailsByResourcePagesWithContext(ctx aws.Context, input *GetComplianceDetailsByResourceInput, fn func(*GetComplianceDetailsByResourceOutput, bool) bool, opts ...request.Option) error

GetComplianceDetailsByResourcePagesWithContext same as GetComplianceDetailsByResourcePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetComplianceDetailsByResourceRequest added in v0.9.13

func (c *ConfigService) GetComplianceDetailsByResourceRequest(input *GetComplianceDetailsByResourceInput) (req *request.Request, output *GetComplianceDetailsByResourceOutput)

GetComplianceDetailsByResourceRequest generates a "aws/request.Request" representing the client's request for the GetComplianceDetailsByResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetComplianceDetailsByResource for more information on using the GetComplianceDetailsByResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetComplianceDetailsByResourceRequest method.
req, resp := client.GetComplianceDetailsByResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceDetailsByResource

func (*ConfigService) GetComplianceDetailsByResourceWithContext added in v1.8.0

func (c *ConfigService) GetComplianceDetailsByResourceWithContext(ctx aws.Context, input *GetComplianceDetailsByResourceInput, opts ...request.Option) (*GetComplianceDetailsByResourceOutput, error)

GetComplianceDetailsByResourceWithContext is the same as GetComplianceDetailsByResource with the addition of the ability to pass a context and additional request options.

See GetComplianceDetailsByResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetComplianceSummaryByConfigRule added in v0.9.13

GetComplianceSummaryByConfigRule API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetComplianceSummaryByConfigRule for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceSummaryByConfigRule

func (*ConfigService) GetComplianceSummaryByConfigRuleRequest added in v0.9.13

func (c *ConfigService) GetComplianceSummaryByConfigRuleRequest(input *GetComplianceSummaryByConfigRuleInput) (req *request.Request, output *GetComplianceSummaryByConfigRuleOutput)

GetComplianceSummaryByConfigRuleRequest generates a "aws/request.Request" representing the client's request for the GetComplianceSummaryByConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetComplianceSummaryByConfigRule for more information on using the GetComplianceSummaryByConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetComplianceSummaryByConfigRuleRequest method.
req, resp := client.GetComplianceSummaryByConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceSummaryByConfigRule

func (*ConfigService) GetComplianceSummaryByConfigRuleWithContext added in v1.8.0

func (c *ConfigService) GetComplianceSummaryByConfigRuleWithContext(ctx aws.Context, input *GetComplianceSummaryByConfigRuleInput, opts ...request.Option) (*GetComplianceSummaryByConfigRuleOutput, error)

GetComplianceSummaryByConfigRuleWithContext is the same as GetComplianceSummaryByConfigRule with the addition of the ability to pass a context and additional request options.

See GetComplianceSummaryByConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetComplianceSummaryByResourceType added in v0.9.13

GetComplianceSummaryByResourceType API operation for AWS Config.

Returns the number of resources that are compliant and the number that are noncompliant. You can specify one or more resource types to get these numbers for each resource type. The maximum number returned is 100.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetComplianceSummaryByResourceType for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceSummaryByResourceType

func (*ConfigService) GetComplianceSummaryByResourceTypeRequest added in v0.9.13

func (c *ConfigService) GetComplianceSummaryByResourceTypeRequest(input *GetComplianceSummaryByResourceTypeInput) (req *request.Request, output *GetComplianceSummaryByResourceTypeOutput)

GetComplianceSummaryByResourceTypeRequest generates a "aws/request.Request" representing the client's request for the GetComplianceSummaryByResourceType operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetComplianceSummaryByResourceType for more information on using the GetComplianceSummaryByResourceType API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetComplianceSummaryByResourceTypeRequest method.
req, resp := client.GetComplianceSummaryByResourceTypeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetComplianceSummaryByResourceType

func (*ConfigService) GetComplianceSummaryByResourceTypeWithContext added in v1.8.0

func (c *ConfigService) GetComplianceSummaryByResourceTypeWithContext(ctx aws.Context, input *GetComplianceSummaryByResourceTypeInput, opts ...request.Option) (*GetComplianceSummaryByResourceTypeOutput, error)

GetComplianceSummaryByResourceTypeWithContext is the same as GetComplianceSummaryByResourceType with the addition of the ability to pass a context and additional request options.

See GetComplianceSummaryByResourceType for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetConformancePackComplianceDetails added in v1.25.38

GetConformancePackComplianceDetails API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetConformancePackComplianceDetails for usage and error information.

Returned Error Types:

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConformancePackException You specified one or more conformance packs that do not exist.

  • NoSuchConfigRuleInConformancePackException Config rule that you passed in the filter does not exist.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceDetails

func (*ConfigService) GetConformancePackComplianceDetailsPages added in v1.38.37

func (c *ConfigService) GetConformancePackComplianceDetailsPages(input *GetConformancePackComplianceDetailsInput, fn func(*GetConformancePackComplianceDetailsOutput, bool) bool) error

GetConformancePackComplianceDetailsPages iterates over the pages of a GetConformancePackComplianceDetails operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetConformancePackComplianceDetails method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetConformancePackComplianceDetails operation.
pageNum := 0
err := client.GetConformancePackComplianceDetailsPages(params,
    func(page *configservice.GetConformancePackComplianceDetailsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetConformancePackComplianceDetailsPagesWithContext added in v1.38.37

func (c *ConfigService) GetConformancePackComplianceDetailsPagesWithContext(ctx aws.Context, input *GetConformancePackComplianceDetailsInput, fn func(*GetConformancePackComplianceDetailsOutput, bool) bool, opts ...request.Option) error

GetConformancePackComplianceDetailsPagesWithContext same as GetConformancePackComplianceDetailsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetConformancePackComplianceDetailsRequest added in v1.25.38

func (c *ConfigService) GetConformancePackComplianceDetailsRequest(input *GetConformancePackComplianceDetailsInput) (req *request.Request, output *GetConformancePackComplianceDetailsOutput)

GetConformancePackComplianceDetailsRequest generates a "aws/request.Request" representing the client's request for the GetConformancePackComplianceDetails operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetConformancePackComplianceDetails for more information on using the GetConformancePackComplianceDetails API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetConformancePackComplianceDetailsRequest method.
req, resp := client.GetConformancePackComplianceDetailsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceDetails

func (*ConfigService) GetConformancePackComplianceDetailsWithContext added in v1.25.38

func (c *ConfigService) GetConformancePackComplianceDetailsWithContext(ctx aws.Context, input *GetConformancePackComplianceDetailsInput, opts ...request.Option) (*GetConformancePackComplianceDetailsOutput, error)

GetConformancePackComplianceDetailsWithContext is the same as GetConformancePackComplianceDetails with the addition of the ability to pass a context and additional request options.

See GetConformancePackComplianceDetails for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetConformancePackComplianceSummary added in v1.25.38

GetConformancePackComplianceSummary API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetConformancePackComplianceSummary for usage and error information.

Returned Error Types:

  • NoSuchConformancePackException You specified one or more conformance packs that do not exist.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceSummary

func (*ConfigService) GetConformancePackComplianceSummaryPages added in v1.38.37

func (c *ConfigService) GetConformancePackComplianceSummaryPages(input *GetConformancePackComplianceSummaryInput, fn func(*GetConformancePackComplianceSummaryOutput, bool) bool) error

GetConformancePackComplianceSummaryPages iterates over the pages of a GetConformancePackComplianceSummary operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetConformancePackComplianceSummary method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetConformancePackComplianceSummary operation.
pageNum := 0
err := client.GetConformancePackComplianceSummaryPages(params,
    func(page *configservice.GetConformancePackComplianceSummaryOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetConformancePackComplianceSummaryPagesWithContext added in v1.38.37

func (c *ConfigService) GetConformancePackComplianceSummaryPagesWithContext(ctx aws.Context, input *GetConformancePackComplianceSummaryInput, fn func(*GetConformancePackComplianceSummaryOutput, bool) bool, opts ...request.Option) error

GetConformancePackComplianceSummaryPagesWithContext same as GetConformancePackComplianceSummaryPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetConformancePackComplianceSummaryRequest added in v1.25.38

func (c *ConfigService) GetConformancePackComplianceSummaryRequest(input *GetConformancePackComplianceSummaryInput) (req *request.Request, output *GetConformancePackComplianceSummaryOutput)

GetConformancePackComplianceSummaryRequest generates a "aws/request.Request" representing the client's request for the GetConformancePackComplianceSummary operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetConformancePackComplianceSummary for more information on using the GetConformancePackComplianceSummary API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetConformancePackComplianceSummaryRequest method.
req, resp := client.GetConformancePackComplianceSummaryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetConformancePackComplianceSummary

func (*ConfigService) GetConformancePackComplianceSummaryWithContext added in v1.25.38

func (c *ConfigService) GetConformancePackComplianceSummaryWithContext(ctx aws.Context, input *GetConformancePackComplianceSummaryInput, opts ...request.Option) (*GetConformancePackComplianceSummaryOutput, error)

GetConformancePackComplianceSummaryWithContext is the same as GetConformancePackComplianceSummary with the addition of the ability to pass a context and additional request options.

See GetConformancePackComplianceSummary for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetCustomRulePolicy added in v1.43.25

func (c *ConfigService) GetCustomRulePolicy(input *GetCustomRulePolicyInput) (*GetCustomRulePolicyOutput, error)

GetCustomRulePolicy API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetCustomRulePolicy for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetCustomRulePolicy

func (*ConfigService) GetCustomRulePolicyRequest added in v1.43.25

func (c *ConfigService) GetCustomRulePolicyRequest(input *GetCustomRulePolicyInput) (req *request.Request, output *GetCustomRulePolicyOutput)

GetCustomRulePolicyRequest generates a "aws/request.Request" representing the client's request for the GetCustomRulePolicy operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCustomRulePolicy for more information on using the GetCustomRulePolicy API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetCustomRulePolicyRequest method.
req, resp := client.GetCustomRulePolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetCustomRulePolicy

func (*ConfigService) GetCustomRulePolicyWithContext added in v1.43.25

func (c *ConfigService) GetCustomRulePolicyWithContext(ctx aws.Context, input *GetCustomRulePolicyInput, opts ...request.Option) (*GetCustomRulePolicyOutput, error)

GetCustomRulePolicyWithContext is the same as GetCustomRulePolicy with the addition of the ability to pass a context and additional request options.

See GetCustomRulePolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetDiscoveredResourceCounts added in v1.10.20

GetDiscoveredResourceCounts API operation for AWS Config.

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.

Example

Config is recording three resource types in the US East (Ohio) Region for your account: 25 EC2 instances, 20 IAM users, and 15 S3 buckets.

You make a call to the GetDiscoveredResourceCounts action and specify that you want all resource types.

Config returns the following:

  • The resource types (EC2 instances, IAM users, and S3 buckets).

  • The number of each resource type (25, 20, and 15).

  • The total number of all resources (60).

The response is paginated. By default, Config lists 100 ResourceCount objects on each page. You can customize this number with the limit parameter. The response includes a nextToken string. To get the next page of results, run the request again and specify the string for the nextToken parameter.

If you make a call to the GetDiscoveredResourceCounts action, you might not immediately receive resource counts in the following situations:

  • You are a new Config customer.

  • You just enabled resource recording.

It might take a few minutes for Config to record and count your resources. Wait a few minutes and then retry the GetDiscoveredResourceCounts action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetDiscoveredResourceCounts for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetDiscoveredResourceCounts

func (*ConfigService) GetDiscoveredResourceCountsPages added in v1.38.37

func (c *ConfigService) GetDiscoveredResourceCountsPages(input *GetDiscoveredResourceCountsInput, fn func(*GetDiscoveredResourceCountsOutput, bool) bool) error

GetDiscoveredResourceCountsPages iterates over the pages of a GetDiscoveredResourceCounts operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetDiscoveredResourceCounts method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetDiscoveredResourceCounts operation.
pageNum := 0
err := client.GetDiscoveredResourceCountsPages(params,
    func(page *configservice.GetDiscoveredResourceCountsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetDiscoveredResourceCountsPagesWithContext added in v1.38.37

func (c *ConfigService) GetDiscoveredResourceCountsPagesWithContext(ctx aws.Context, input *GetDiscoveredResourceCountsInput, fn func(*GetDiscoveredResourceCountsOutput, bool) bool, opts ...request.Option) error

GetDiscoveredResourceCountsPagesWithContext same as GetDiscoveredResourceCountsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetDiscoveredResourceCountsRequest added in v1.10.20

func (c *ConfigService) GetDiscoveredResourceCountsRequest(input *GetDiscoveredResourceCountsInput) (req *request.Request, output *GetDiscoveredResourceCountsOutput)

GetDiscoveredResourceCountsRequest generates a "aws/request.Request" representing the client's request for the GetDiscoveredResourceCounts operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDiscoveredResourceCounts for more information on using the GetDiscoveredResourceCounts API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDiscoveredResourceCountsRequest method.
req, resp := client.GetDiscoveredResourceCountsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetDiscoveredResourceCounts

func (*ConfigService) GetDiscoveredResourceCountsWithContext added in v1.10.20

func (c *ConfigService) GetDiscoveredResourceCountsWithContext(ctx aws.Context, input *GetDiscoveredResourceCountsInput, opts ...request.Option) (*GetDiscoveredResourceCountsOutput, error)

GetDiscoveredResourceCountsWithContext is the same as GetDiscoveredResourceCounts with the addition of the ability to pass a context and additional request options.

See GetDiscoveredResourceCounts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetOrganizationConfigRuleDetailedStatus added in v1.20.17

GetOrganizationConfigRuleDetailedStatus API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetOrganizationConfigRuleDetailedStatus for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConfigRuleException The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConfigRuleDetailedStatus

func (*ConfigService) GetOrganizationConfigRuleDetailedStatusPages added in v1.38.37

func (c *ConfigService) GetOrganizationConfigRuleDetailedStatusPages(input *GetOrganizationConfigRuleDetailedStatusInput, fn func(*GetOrganizationConfigRuleDetailedStatusOutput, bool) bool) error

GetOrganizationConfigRuleDetailedStatusPages iterates over the pages of a GetOrganizationConfigRuleDetailedStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetOrganizationConfigRuleDetailedStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetOrganizationConfigRuleDetailedStatus operation.
pageNum := 0
err := client.GetOrganizationConfigRuleDetailedStatusPages(params,
    func(page *configservice.GetOrganizationConfigRuleDetailedStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetOrganizationConfigRuleDetailedStatusPagesWithContext added in v1.38.37

func (c *ConfigService) GetOrganizationConfigRuleDetailedStatusPagesWithContext(ctx aws.Context, input *GetOrganizationConfigRuleDetailedStatusInput, fn func(*GetOrganizationConfigRuleDetailedStatusOutput, bool) bool, opts ...request.Option) error

GetOrganizationConfigRuleDetailedStatusPagesWithContext same as GetOrganizationConfigRuleDetailedStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetOrganizationConfigRuleDetailedStatusRequest added in v1.20.17

func (c *ConfigService) GetOrganizationConfigRuleDetailedStatusRequest(input *GetOrganizationConfigRuleDetailedStatusInput) (req *request.Request, output *GetOrganizationConfigRuleDetailedStatusOutput)

GetOrganizationConfigRuleDetailedStatusRequest generates a "aws/request.Request" representing the client's request for the GetOrganizationConfigRuleDetailedStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetOrganizationConfigRuleDetailedStatus for more information on using the GetOrganizationConfigRuleDetailedStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetOrganizationConfigRuleDetailedStatusRequest method.
req, resp := client.GetOrganizationConfigRuleDetailedStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConfigRuleDetailedStatus

func (*ConfigService) GetOrganizationConfigRuleDetailedStatusWithContext added in v1.20.17

func (c *ConfigService) GetOrganizationConfigRuleDetailedStatusWithContext(ctx aws.Context, input *GetOrganizationConfigRuleDetailedStatusInput, opts ...request.Option) (*GetOrganizationConfigRuleDetailedStatusOutput, error)

GetOrganizationConfigRuleDetailedStatusWithContext is the same as GetOrganizationConfigRuleDetailedStatus with the addition of the ability to pass a context and additional request options.

See GetOrganizationConfigRuleDetailedStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetOrganizationConformancePackDetailedStatus added in v1.25.38

GetOrganizationConformancePackDetailedStatus API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetOrganizationConformancePackDetailedStatus for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConformancePackException Config organization conformance pack that you passed in the filter does not exist.

    For DeleteOrganizationConformancePack, you tried to delete an organization conformance pack that does not exist.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConformancePackDetailedStatus

func (*ConfigService) GetOrganizationConformancePackDetailedStatusPages added in v1.38.37

func (c *ConfigService) GetOrganizationConformancePackDetailedStatusPages(input *GetOrganizationConformancePackDetailedStatusInput, fn func(*GetOrganizationConformancePackDetailedStatusOutput, bool) bool) error

GetOrganizationConformancePackDetailedStatusPages iterates over the pages of a GetOrganizationConformancePackDetailedStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetOrganizationConformancePackDetailedStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetOrganizationConformancePackDetailedStatus operation.
pageNum := 0
err := client.GetOrganizationConformancePackDetailedStatusPages(params,
    func(page *configservice.GetOrganizationConformancePackDetailedStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetOrganizationConformancePackDetailedStatusPagesWithContext added in v1.38.37

func (c *ConfigService) GetOrganizationConformancePackDetailedStatusPagesWithContext(ctx aws.Context, input *GetOrganizationConformancePackDetailedStatusInput, fn func(*GetOrganizationConformancePackDetailedStatusOutput, bool) bool, opts ...request.Option) error

GetOrganizationConformancePackDetailedStatusPagesWithContext same as GetOrganizationConformancePackDetailedStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetOrganizationConformancePackDetailedStatusRequest added in v1.25.38

func (c *ConfigService) GetOrganizationConformancePackDetailedStatusRequest(input *GetOrganizationConformancePackDetailedStatusInput) (req *request.Request, output *GetOrganizationConformancePackDetailedStatusOutput)

GetOrganizationConformancePackDetailedStatusRequest generates a "aws/request.Request" representing the client's request for the GetOrganizationConformancePackDetailedStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetOrganizationConformancePackDetailedStatus for more information on using the GetOrganizationConformancePackDetailedStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetOrganizationConformancePackDetailedStatusRequest method.
req, resp := client.GetOrganizationConformancePackDetailedStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationConformancePackDetailedStatus

func (*ConfigService) GetOrganizationConformancePackDetailedStatusWithContext added in v1.25.38

func (c *ConfigService) GetOrganizationConformancePackDetailedStatusWithContext(ctx aws.Context, input *GetOrganizationConformancePackDetailedStatusInput, opts ...request.Option) (*GetOrganizationConformancePackDetailedStatusOutput, error)

GetOrganizationConformancePackDetailedStatusWithContext is the same as GetOrganizationConformancePackDetailedStatus with the addition of the ability to pass a context and additional request options.

See GetOrganizationConformancePackDetailedStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetOrganizationCustomRulePolicy added in v1.43.25

GetOrganizationCustomRulePolicy API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetOrganizationCustomRulePolicy for usage and error information.

Returned Error Types:

  • NoSuchOrganizationConfigRuleException The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationCustomRulePolicy

func (*ConfigService) GetOrganizationCustomRulePolicyRequest added in v1.43.25

func (c *ConfigService) GetOrganizationCustomRulePolicyRequest(input *GetOrganizationCustomRulePolicyInput) (req *request.Request, output *GetOrganizationCustomRulePolicyOutput)

GetOrganizationCustomRulePolicyRequest generates a "aws/request.Request" representing the client's request for the GetOrganizationCustomRulePolicy operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetOrganizationCustomRulePolicy for more information on using the GetOrganizationCustomRulePolicy API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetOrganizationCustomRulePolicyRequest method.
req, resp := client.GetOrganizationCustomRulePolicyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetOrganizationCustomRulePolicy

func (*ConfigService) GetOrganizationCustomRulePolicyWithContext added in v1.43.25

func (c *ConfigService) GetOrganizationCustomRulePolicyWithContext(ctx aws.Context, input *GetOrganizationCustomRulePolicyInput, opts ...request.Option) (*GetOrganizationCustomRulePolicyOutput, error)

GetOrganizationCustomRulePolicyWithContext is the same as GetOrganizationCustomRulePolicy with the addition of the ability to pass a context and additional request options.

See GetOrganizationCustomRulePolicy for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetResourceConfigHistory

func (c *ConfigService) GetResourceConfigHistory(input *GetResourceConfigHistoryInput) (*GetResourceConfigHistoryOutput, error)

GetResourceConfigHistory API operation for AWS Config.

For accurate reporting on the compliance status, you must record the AWS::Config::ResourceCompliance resource type. For more information, see Selecting Which Resources Config Records (https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html).

Returns a list of ConfigurationItems for the specified resource. The list contains details about each state of the resource during the specified time interval. If you specified a retention period to retain your ConfigurationItems between a minimum of 30 days and a maximum of 7 years (2557 days), Config returns the ConfigurationItems for the specified retention period.

The response is paginated. By default, Config returns a limit of 10 configuration items per page. You can customize this number with the limit parameter. The response includes a nextToken string. To get the next page of results, run the request again and specify the string for the nextToken parameter.

Each call to the API is limited to span a duration of seven days. It is likely that the number of records returned is smaller than the specified limit. In such cases, you can make another call, using the nextToken.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetResourceConfigHistory for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidTimeRangeException The specified time range is not valid. The earlier time is not chronologically before the later time.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoAvailableConfigurationRecorderException There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

  • ResourceNotDiscoveredException You have specified a resource that is either unknown or has not been discovered.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetResourceConfigHistory

func (*ConfigService) GetResourceConfigHistoryPages

func (c *ConfigService) GetResourceConfigHistoryPages(input *GetResourceConfigHistoryInput, fn func(*GetResourceConfigHistoryOutput, bool) bool) error

GetResourceConfigHistoryPages iterates over the pages of a GetResourceConfigHistory operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetResourceConfigHistory method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetResourceConfigHistory operation.
pageNum := 0
err := client.GetResourceConfigHistoryPages(params,
    func(page *configservice.GetResourceConfigHistoryOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) GetResourceConfigHistoryPagesWithContext added in v1.8.0

func (c *ConfigService) GetResourceConfigHistoryPagesWithContext(ctx aws.Context, input *GetResourceConfigHistoryInput, fn func(*GetResourceConfigHistoryOutput, bool) bool, opts ...request.Option) error

GetResourceConfigHistoryPagesWithContext same as GetResourceConfigHistoryPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetResourceConfigHistoryRequest

func (c *ConfigService) GetResourceConfigHistoryRequest(input *GetResourceConfigHistoryInput) (req *request.Request, output *GetResourceConfigHistoryOutput)

GetResourceConfigHistoryRequest generates a "aws/request.Request" representing the client's request for the GetResourceConfigHistory operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetResourceConfigHistory for more information on using the GetResourceConfigHistory API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetResourceConfigHistoryRequest method.
req, resp := client.GetResourceConfigHistoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetResourceConfigHistory

func (*ConfigService) GetResourceConfigHistoryWithContext added in v1.8.0

func (c *ConfigService) GetResourceConfigHistoryWithContext(ctx aws.Context, input *GetResourceConfigHistoryInput, opts ...request.Option) (*GetResourceConfigHistoryOutput, error)

GetResourceConfigHistoryWithContext is the same as GetResourceConfigHistory with the addition of the ability to pass a context and additional request options.

See GetResourceConfigHistory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetResourceEvaluationSummary added in v1.44.147

GetResourceEvaluationSummary API operation for AWS Config.

Returns a summary of resource evaluation for the specified resource evaluation ID from the proactive rules that were run. The results indicate which evaluation context was used to evaluate the rules, which resource details were evaluated, the evaluation mode that was run, and whether the resource details comply with the configuration of the proactive rules.

To see additional information about the evaluation result, such as which rule flagged a resource as NON_COMPLIANT, use the GetComplianceDetailsByResource (https://docs.aws.amazon.com/config/latest/APIReference/API_GetComplianceDetailsByResource.html) API. For more information, see the Examples (https://docs.aws.amazon.com/config/latest/APIReference/API_GetResourceEvaluationSummary.html#API_GetResourceEvaluationSummary_Examples) section.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetResourceEvaluationSummary for usage and error information.

Returned Error Types:

  • ResourceNotFoundException You have specified a resource that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetResourceEvaluationSummary

func (*ConfigService) GetResourceEvaluationSummaryRequest added in v1.44.147

func (c *ConfigService) GetResourceEvaluationSummaryRequest(input *GetResourceEvaluationSummaryInput) (req *request.Request, output *GetResourceEvaluationSummaryOutput)

GetResourceEvaluationSummaryRequest generates a "aws/request.Request" representing the client's request for the GetResourceEvaluationSummary operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetResourceEvaluationSummary for more information on using the GetResourceEvaluationSummary API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetResourceEvaluationSummaryRequest method.
req, resp := client.GetResourceEvaluationSummaryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetResourceEvaluationSummary

func (*ConfigService) GetResourceEvaluationSummaryWithContext added in v1.44.147

func (c *ConfigService) GetResourceEvaluationSummaryWithContext(ctx aws.Context, input *GetResourceEvaluationSummaryInput, opts ...request.Option) (*GetResourceEvaluationSummaryOutput, error)

GetResourceEvaluationSummaryWithContext is the same as GetResourceEvaluationSummary with the addition of the ability to pass a context and additional request options.

See GetResourceEvaluationSummary for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) GetStoredQuery added in v1.36.13

func (c *ConfigService) GetStoredQuery(input *GetStoredQueryInput) (*GetStoredQueryOutput, error)

GetStoredQuery API operation for AWS Config.

Returns the details of a specific stored query.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation GetStoredQuery for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • ResourceNotFoundException You have specified a resource that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetStoredQuery

func (*ConfigService) GetStoredQueryRequest added in v1.36.13

func (c *ConfigService) GetStoredQueryRequest(input *GetStoredQueryInput) (req *request.Request, output *GetStoredQueryOutput)

GetStoredQueryRequest generates a "aws/request.Request" representing the client's request for the GetStoredQuery operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetStoredQuery for more information on using the GetStoredQuery API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetStoredQueryRequest method.
req, resp := client.GetStoredQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/GetStoredQuery

func (*ConfigService) GetStoredQueryWithContext added in v1.36.13

func (c *ConfigService) GetStoredQueryWithContext(ctx aws.Context, input *GetStoredQueryInput, opts ...request.Option) (*GetStoredQueryOutput, error)

GetStoredQueryWithContext is the same as GetStoredQuery with the addition of the ability to pass a context and additional request options.

See GetStoredQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListAggregateDiscoveredResources added in v1.15.79

ListAggregateDiscoveredResources API operation for AWS Config.

Accepts a resource type and returns a list of resource identifiers that are aggregated for a specific resource type across accounts and regions. A resource identifier includes the resource type, ID, (if available) the custom resource name, source account, and source region. You can narrow the results to include only resources that have specific resource IDs, or a resource name, or source account ID, or source region.

For example, if the input consists of accountID 12345678910 and the region is us-east-1 for resource type AWS::EC2::Instance then the API returns all the EC2 instance identifiers of accountID 12345678910 and region us-east-1.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation ListAggregateDiscoveredResources for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListAggregateDiscoveredResources

func (*ConfigService) ListAggregateDiscoveredResourcesPages added in v1.38.37

func (c *ConfigService) ListAggregateDiscoveredResourcesPages(input *ListAggregateDiscoveredResourcesInput, fn func(*ListAggregateDiscoveredResourcesOutput, bool) bool) error

ListAggregateDiscoveredResourcesPages iterates over the pages of a ListAggregateDiscoveredResources operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListAggregateDiscoveredResources method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListAggregateDiscoveredResources operation.
pageNum := 0
err := client.ListAggregateDiscoveredResourcesPages(params,
    func(page *configservice.ListAggregateDiscoveredResourcesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) ListAggregateDiscoveredResourcesPagesWithContext added in v1.38.37

func (c *ConfigService) ListAggregateDiscoveredResourcesPagesWithContext(ctx aws.Context, input *ListAggregateDiscoveredResourcesInput, fn func(*ListAggregateDiscoveredResourcesOutput, bool) bool, opts ...request.Option) error

ListAggregateDiscoveredResourcesPagesWithContext same as ListAggregateDiscoveredResourcesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListAggregateDiscoveredResourcesRequest added in v1.15.79

func (c *ConfigService) ListAggregateDiscoveredResourcesRequest(input *ListAggregateDiscoveredResourcesInput) (req *request.Request, output *ListAggregateDiscoveredResourcesOutput)

ListAggregateDiscoveredResourcesRequest generates a "aws/request.Request" representing the client's request for the ListAggregateDiscoveredResources operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListAggregateDiscoveredResources for more information on using the ListAggregateDiscoveredResources API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListAggregateDiscoveredResourcesRequest method.
req, resp := client.ListAggregateDiscoveredResourcesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListAggregateDiscoveredResources

func (*ConfigService) ListAggregateDiscoveredResourcesWithContext added in v1.15.79

func (c *ConfigService) ListAggregateDiscoveredResourcesWithContext(ctx aws.Context, input *ListAggregateDiscoveredResourcesInput, opts ...request.Option) (*ListAggregateDiscoveredResourcesOutput, error)

ListAggregateDiscoveredResourcesWithContext is the same as ListAggregateDiscoveredResources with the addition of the ability to pass a context and additional request options.

See ListAggregateDiscoveredResources for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListConformancePackComplianceScores added in v1.44.64

ListConformancePackComplianceScores API operation for AWS Config.

Returns a list of conformance pack compliance scores. A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs.

Conformance packs with no evaluation results will have a compliance score of INSUFFICIENT_DATA.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation ListConformancePackComplianceScores for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListConformancePackComplianceScores

func (*ConfigService) ListConformancePackComplianceScoresPages added in v1.44.64

func (c *ConfigService) ListConformancePackComplianceScoresPages(input *ListConformancePackComplianceScoresInput, fn func(*ListConformancePackComplianceScoresOutput, bool) bool) error

ListConformancePackComplianceScoresPages iterates over the pages of a ListConformancePackComplianceScores operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListConformancePackComplianceScores method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListConformancePackComplianceScores operation.
pageNum := 0
err := client.ListConformancePackComplianceScoresPages(params,
    func(page *configservice.ListConformancePackComplianceScoresOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) ListConformancePackComplianceScoresPagesWithContext added in v1.44.64

func (c *ConfigService) ListConformancePackComplianceScoresPagesWithContext(ctx aws.Context, input *ListConformancePackComplianceScoresInput, fn func(*ListConformancePackComplianceScoresOutput, bool) bool, opts ...request.Option) error

ListConformancePackComplianceScoresPagesWithContext same as ListConformancePackComplianceScoresPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListConformancePackComplianceScoresRequest added in v1.44.64

func (c *ConfigService) ListConformancePackComplianceScoresRequest(input *ListConformancePackComplianceScoresInput) (req *request.Request, output *ListConformancePackComplianceScoresOutput)

ListConformancePackComplianceScoresRequest generates a "aws/request.Request" representing the client's request for the ListConformancePackComplianceScores operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListConformancePackComplianceScores for more information on using the ListConformancePackComplianceScores API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListConformancePackComplianceScoresRequest method.
req, resp := client.ListConformancePackComplianceScoresRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListConformancePackComplianceScores

func (*ConfigService) ListConformancePackComplianceScoresWithContext added in v1.44.64

func (c *ConfigService) ListConformancePackComplianceScoresWithContext(ctx aws.Context, input *ListConformancePackComplianceScoresInput, opts ...request.Option) (*ListConformancePackComplianceScoresOutput, error)

ListConformancePackComplianceScoresWithContext is the same as ListConformancePackComplianceScores with the addition of the ability to pass a context and additional request options.

See ListConformancePackComplianceScores for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListDiscoveredResources added in v0.9.5

func (c *ConfigService) ListDiscoveredResources(input *ListDiscoveredResourcesInput) (*ListDiscoveredResourcesOutput, error)

ListDiscoveredResources API operation for AWS Config.

Accepts a resource type and returns a list of resource identifiers for the resources of that type. A resource identifier includes the resource type, ID, and (if available) the custom resource name. The results consist of resources that Config has discovered, including those that Config is not currently recording. You can narrow the results to include only resources that have specific resource IDs or a resource name.

You can specify either resource IDs or a resource name, but not both, in the same request.

The response is paginated. By default, Config lists 100 resource identifiers on each page. You can customize this number with the limit parameter. The response includes a nextToken string. To get the next page of results, run the request again and specify the string for the nextToken parameter.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation ListDiscoveredResources for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • NoAvailableConfigurationRecorderException There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListDiscoveredResources

func (*ConfigService) ListDiscoveredResourcesPages added in v1.38.37

func (c *ConfigService) ListDiscoveredResourcesPages(input *ListDiscoveredResourcesInput, fn func(*ListDiscoveredResourcesOutput, bool) bool) error

ListDiscoveredResourcesPages iterates over the pages of a ListDiscoveredResources operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListDiscoveredResources method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListDiscoveredResources operation.
pageNum := 0
err := client.ListDiscoveredResourcesPages(params,
    func(page *configservice.ListDiscoveredResourcesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) ListDiscoveredResourcesPagesWithContext added in v1.38.37

func (c *ConfigService) ListDiscoveredResourcesPagesWithContext(ctx aws.Context, input *ListDiscoveredResourcesInput, fn func(*ListDiscoveredResourcesOutput, bool) bool, opts ...request.Option) error

ListDiscoveredResourcesPagesWithContext same as ListDiscoveredResourcesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListDiscoveredResourcesRequest added in v0.9.5

func (c *ConfigService) ListDiscoveredResourcesRequest(input *ListDiscoveredResourcesInput) (req *request.Request, output *ListDiscoveredResourcesOutput)

ListDiscoveredResourcesRequest generates a "aws/request.Request" representing the client's request for the ListDiscoveredResources operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListDiscoveredResources for more information on using the ListDiscoveredResources API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListDiscoveredResourcesRequest method.
req, resp := client.ListDiscoveredResourcesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListDiscoveredResources

func (*ConfigService) ListDiscoveredResourcesWithContext added in v1.8.0

func (c *ConfigService) ListDiscoveredResourcesWithContext(ctx aws.Context, input *ListDiscoveredResourcesInput, opts ...request.Option) (*ListDiscoveredResourcesOutput, error)

ListDiscoveredResourcesWithContext is the same as ListDiscoveredResources with the addition of the ability to pass a context and additional request options.

See ListDiscoveredResources for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListResourceEvaluations added in v1.44.147

func (c *ConfigService) ListResourceEvaluations(input *ListResourceEvaluationsInput) (*ListResourceEvaluationsOutput, error)

ListResourceEvaluations API operation for AWS Config.

Returns a list of proactive resource evaluations.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation ListResourceEvaluations for usage and error information.

Returned Error Types:

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidTimeRangeException The specified time range is not valid. The earlier time is not chronologically before the later time.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListResourceEvaluations

func (*ConfigService) ListResourceEvaluationsPages added in v1.44.147

func (c *ConfigService) ListResourceEvaluationsPages(input *ListResourceEvaluationsInput, fn func(*ListResourceEvaluationsOutput, bool) bool) error

ListResourceEvaluationsPages iterates over the pages of a ListResourceEvaluations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListResourceEvaluations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListResourceEvaluations operation.
pageNum := 0
err := client.ListResourceEvaluationsPages(params,
    func(page *configservice.ListResourceEvaluationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) ListResourceEvaluationsPagesWithContext added in v1.44.147

func (c *ConfigService) ListResourceEvaluationsPagesWithContext(ctx aws.Context, input *ListResourceEvaluationsInput, fn func(*ListResourceEvaluationsOutput, bool) bool, opts ...request.Option) error

ListResourceEvaluationsPagesWithContext same as ListResourceEvaluationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListResourceEvaluationsRequest added in v1.44.147

func (c *ConfigService) ListResourceEvaluationsRequest(input *ListResourceEvaluationsInput) (req *request.Request, output *ListResourceEvaluationsOutput)

ListResourceEvaluationsRequest generates a "aws/request.Request" representing the client's request for the ListResourceEvaluations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListResourceEvaluations for more information on using the ListResourceEvaluations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListResourceEvaluationsRequest method.
req, resp := client.ListResourceEvaluationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListResourceEvaluations

func (*ConfigService) ListResourceEvaluationsWithContext added in v1.44.147

func (c *ConfigService) ListResourceEvaluationsWithContext(ctx aws.Context, input *ListResourceEvaluationsInput, opts ...request.Option) (*ListResourceEvaluationsOutput, error)

ListResourceEvaluationsWithContext is the same as ListResourceEvaluations with the addition of the ability to pass a context and additional request options.

See ListResourceEvaluations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListStoredQueries added in v1.36.13

func (c *ConfigService) ListStoredQueries(input *ListStoredQueriesInput) (*ListStoredQueriesOutput, error)

ListStoredQueries API operation for AWS Config.

Lists the stored queries for a single Amazon Web Services account and a single Amazon Web Services Region. The default is 100.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation ListStoredQueries for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListStoredQueries

func (*ConfigService) ListStoredQueriesPages added in v1.36.13

func (c *ConfigService) ListStoredQueriesPages(input *ListStoredQueriesInput, fn func(*ListStoredQueriesOutput, bool) bool) error

ListStoredQueriesPages iterates over the pages of a ListStoredQueries operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListStoredQueries method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListStoredQueries operation.
pageNum := 0
err := client.ListStoredQueriesPages(params,
    func(page *configservice.ListStoredQueriesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) ListStoredQueriesPagesWithContext added in v1.36.13

func (c *ConfigService) ListStoredQueriesPagesWithContext(ctx aws.Context, input *ListStoredQueriesInput, fn func(*ListStoredQueriesOutput, bool) bool, opts ...request.Option) error

ListStoredQueriesPagesWithContext same as ListStoredQueriesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListStoredQueriesRequest added in v1.36.13

func (c *ConfigService) ListStoredQueriesRequest(input *ListStoredQueriesInput) (req *request.Request, output *ListStoredQueriesOutput)

ListStoredQueriesRequest generates a "aws/request.Request" representing the client's request for the ListStoredQueries operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListStoredQueries for more information on using the ListStoredQueries API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListStoredQueriesRequest method.
req, resp := client.ListStoredQueriesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListStoredQueries

func (*ConfigService) ListStoredQueriesWithContext added in v1.36.13

func (c *ConfigService) ListStoredQueriesWithContext(ctx aws.Context, input *ListStoredQueriesInput, opts ...request.Option) (*ListStoredQueriesOutput, error)

ListStoredQueriesWithContext is the same as ListStoredQueries with the addition of the ability to pass a context and additional request options.

See ListStoredQueries for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListTagsForResource added in v1.18.3

func (c *ConfigService) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for AWS Config.

List the tags for Config resource.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation ListTagsForResource for usage and error information.

Returned Error Types:

  • ResourceNotFoundException You have specified a resource that does not exist.

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListTagsForResource

func (*ConfigService) ListTagsForResourcePages added in v1.38.37

func (c *ConfigService) ListTagsForResourcePages(input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool) error

ListTagsForResourcePages iterates over the pages of a ListTagsForResource operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListTagsForResource method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a ListTagsForResource operation.
pageNum := 0
err := client.ListTagsForResourcePages(params,
    func(page *configservice.ListTagsForResourceOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) ListTagsForResourcePagesWithContext added in v1.38.37

func (c *ConfigService) ListTagsForResourcePagesWithContext(ctx aws.Context, input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool, opts ...request.Option) error

ListTagsForResourcePagesWithContext same as ListTagsForResourcePages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) ListTagsForResourceRequest added in v1.18.3

func (c *ConfigService) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListTagsForResource for more information on using the ListTagsForResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListTagsForResourceRequest method.
req, resp := client.ListTagsForResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListTagsForResource

func (*ConfigService) ListTagsForResourceWithContext added in v1.18.3

func (c *ConfigService) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.

See ListTagsForResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutAggregationAuthorization added in v1.13.28

PutAggregationAuthorization API operation for AWS Config.

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

PutAggregationAuthorization is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different tags values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, tags will not be updated, even if they are different.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutAggregationAuthorization for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutAggregationAuthorization

func (*ConfigService) PutAggregationAuthorizationRequest added in v1.13.28

func (c *ConfigService) PutAggregationAuthorizationRequest(input *PutAggregationAuthorizationInput) (req *request.Request, output *PutAggregationAuthorizationOutput)

PutAggregationAuthorizationRequest generates a "aws/request.Request" representing the client's request for the PutAggregationAuthorization operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutAggregationAuthorization for more information on using the PutAggregationAuthorization API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutAggregationAuthorizationRequest method.
req, resp := client.PutAggregationAuthorizationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutAggregationAuthorization

func (*ConfigService) PutAggregationAuthorizationWithContext added in v1.13.28

func (c *ConfigService) PutAggregationAuthorizationWithContext(ctx aws.Context, input *PutAggregationAuthorizationInput, opts ...request.Option) (*PutAggregationAuthorizationOutput, error)

PutAggregationAuthorizationWithContext is the same as PutAggregationAuthorization with the addition of the ability to pass a context and additional request options.

See PutAggregationAuthorization for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutConfigRule added in v0.9.13

func (c *ConfigService) PutConfigRule(input *PutConfigRuleInput) (*PutConfigRuleOutput, error)

PutConfigRule API operation for AWS Config.

Adds or updates an Config rule to evaluate if your Amazon Web Services resources comply with your desired configurations. For information on how many Config rules you can have per account, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

There are two types of rules: Config Managed Rules and Config Custom Rules. You can use PutConfigRule to create both Config Managed Rules and Config Custom Rules.

Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules (https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an Config managed rule, you must specify the rule's identifier for the SourceIdentifier key.

Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide (https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with Guard (Guard GitHub Repository (https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. Config custom rules created with Lambda are called Config Custom Lambda Rules and Config custom rules created with Guard are called Config Custom Policy Rules.

If you are adding a new Config Custom Lambda rule, you first need to create an Lambda function that the rule invokes to evaluate your resources. When you use PutConfigRule to add a Custom Lambda rule to Config, you must specify the Amazon Resource Name (ARN) that Lambda assigns to the function. You specify the ARN in the SourceIdentifier key. This key is part of the Source object, which is part of the ConfigRule object.

For any new Config rule that you add, specify the ConfigRuleName in the ConfigRule object. Do not specify the ConfigRuleArn or the ConfigRuleId. These values are generated by Config for new rules.

If you are updating a rule that you added previously, you can specify the rule by ConfigRuleName, ConfigRuleId, or ConfigRuleArn in the ConfigRule data type that you use in this request.

For more information about developing and using Config rules, see Evaluating Resources with Config Rules (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config.html) in the Config Developer Guide.

PutConfigRule is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different tags values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, tags will not be updated, even if they are different.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutConfigRule for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • MaxNumberOfConfigRulesExceededException Failed to add the Config rule because the account already contains the maximum number of 1000 rules. Consider deleting any deactivated rules before you add new rules.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • NoAvailableConfigurationRecorderException There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigRule

func (*ConfigService) PutConfigRuleRequest added in v0.9.13

func (c *ConfigService) PutConfigRuleRequest(input *PutConfigRuleInput) (req *request.Request, output *PutConfigRuleOutput)

PutConfigRuleRequest generates a "aws/request.Request" representing the client's request for the PutConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutConfigRule for more information on using the PutConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutConfigRuleRequest method.
req, resp := client.PutConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigRule

func (*ConfigService) PutConfigRuleWithContext added in v1.8.0

func (c *ConfigService) PutConfigRuleWithContext(ctx aws.Context, input *PutConfigRuleInput, opts ...request.Option) (*PutConfigRuleOutput, error)

PutConfigRuleWithContext is the same as PutConfigRule with the addition of the ability to pass a context and additional request options.

See PutConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutConfigurationAggregator added in v1.13.28

func (c *ConfigService) PutConfigurationAggregator(input *PutConfigurationAggregatorInput) (*PutConfigurationAggregatorOutput, error)

PutConfigurationAggregator API operation for AWS Config.

Creates and updates the configuration aggregator with the selected source accounts and regions. The source account can be individual account(s) or an organization.

accountIds that are passed will be replaced with existing accounts. If you want to add additional accounts into the aggregator, call DescribeConfigurationAggregators to get the previous accounts and then append new ones.

Config should be enabled in source accounts and regions you want to aggregate.

If your source type is an organization, you must be signed in to the management account or a registered delegated administrator and all the features must be enabled in your organization. If the caller is a management account, Config calls EnableAwsServiceAccess API to enable integration between Config and Organizations. If the caller is a registered delegated administrator, Config calls ListDelegatedAdministrators API to verify whether the caller is a valid delegated administrator.

To register a delegated administrator, see Register a Delegated Administrator (https://docs.aws.amazon.com/config/latest/developerguide/set-up-aggregator-cli.html#register-a-delegated-administrator-cli) in the Config developer guide.

PutConfigurationAggregator is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different tags values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, tags will not be updated, even if they are different.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutConfigurationAggregator for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • LimitExceededException For StartConfigRulesEvaluation API, this exception is thrown if an evaluation is in progress or if you call the StartConfigRulesEvaluation API more than once per minute.

    For PutConfigurationAggregator API, this exception is thrown if the number of accounts and aggregators exceeds the limit.

  • InvalidRoleException You have provided a null or empty Amazon Resource Name (ARN) for the IAM role assumed by Config and used by the configuration recorder.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

  • NoAvailableOrganizationException Organization is no longer available.

  • OrganizationAllFeaturesNotEnabledException Config resource cannot be created because your organization does not have all features enabled.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationAggregator

func (*ConfigService) PutConfigurationAggregatorRequest added in v1.13.28

func (c *ConfigService) PutConfigurationAggregatorRequest(input *PutConfigurationAggregatorInput) (req *request.Request, output *PutConfigurationAggregatorOutput)

PutConfigurationAggregatorRequest generates a "aws/request.Request" representing the client's request for the PutConfigurationAggregator operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutConfigurationAggregator for more information on using the PutConfigurationAggregator API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutConfigurationAggregatorRequest method.
req, resp := client.PutConfigurationAggregatorRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationAggregator

func (*ConfigService) PutConfigurationAggregatorWithContext added in v1.13.28

func (c *ConfigService) PutConfigurationAggregatorWithContext(ctx aws.Context, input *PutConfigurationAggregatorInput, opts ...request.Option) (*PutConfigurationAggregatorOutput, error)

PutConfigurationAggregatorWithContext is the same as PutConfigurationAggregator with the addition of the ability to pass a context and additional request options.

See PutConfigurationAggregator for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutConfigurationRecorder

func (c *ConfigService) PutConfigurationRecorder(input *PutConfigurationRecorderInput) (*PutConfigurationRecorderOutput, error)

PutConfigurationRecorder API operation for AWS Config.

Creates a new configuration recorder to record configuration changes for specified resource types.

You can also use this action to change the roleARN or the recordingGroup of an existing recorder. For more information, see Managing the Configuration Recorder (https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html) in the Config Developer Guide.

You can specify only one configuration recorder for each Amazon Web Services Region for each account.

If the configuration recorder does not have the recordingGroup field specified, the default is to record all supported resource types.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutConfigurationRecorder for usage and error information.

Returned Error Types:

  • MaxNumberOfConfigurationRecordersExceededException You have reached the limit of the number of configuration recorders you can create.

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InvalidConfigurationRecorderNameException You have provided a name for the configuration recorder that is not valid.

  • InvalidRoleException You have provided a null or empty Amazon Resource Name (ARN) for the IAM role assumed by Config and used by the configuration recorder.

  • InvalidRecordingGroupException Indicates one of the following errors:

  • You have provided a combination of parameter values that is not valid. For example: Setting the allSupported field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html) to true, but providing a non-empty list for the resourceTypesfield of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html). Setting the allSupported field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html) to true, but also setting the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html) to EXCLUSION_BY_RESOURCE_TYPES.

  • Every parameter is either null, false, or empty.

  • You have reached the limit of the number of resource types you can provide for the recording group.

  • You have provided resource types or a recording strategy that are not valid.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationRecorder

func (*ConfigService) PutConfigurationRecorderRequest

func (c *ConfigService) PutConfigurationRecorderRequest(input *PutConfigurationRecorderInput) (req *request.Request, output *PutConfigurationRecorderOutput)

PutConfigurationRecorderRequest generates a "aws/request.Request" representing the client's request for the PutConfigurationRecorder operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutConfigurationRecorder for more information on using the PutConfigurationRecorder API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutConfigurationRecorderRequest method.
req, resp := client.PutConfigurationRecorderRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationRecorder

func (*ConfigService) PutConfigurationRecorderWithContext added in v1.8.0

func (c *ConfigService) PutConfigurationRecorderWithContext(ctx aws.Context, input *PutConfigurationRecorderInput, opts ...request.Option) (*PutConfigurationRecorderOutput, error)

PutConfigurationRecorderWithContext is the same as PutConfigurationRecorder with the addition of the ability to pass a context and additional request options.

See PutConfigurationRecorder for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutConformancePack added in v1.25.38

func (c *ConfigService) PutConformancePack(input *PutConformancePackInput) (*PutConformancePackOutput, error)

PutConformancePack API operation for AWS Config.

Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across an organization. For information on how many conformance packs you can have per account, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account.

You must specify only one of the follow parameters: TemplateS3Uri, TemplateBody or TemplateSSMDocumentDetails.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutConformancePack for usage and error information.

Returned Error Types:

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • ConformancePackTemplateValidationException You have specified a template that is not valid or supported.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • MaxNumberOfConformancePacksExceededException You have reached the limit of the number of conformance packs you can create in an account. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConformancePack

func (*ConfigService) PutConformancePackRequest added in v1.25.38

func (c *ConfigService) PutConformancePackRequest(input *PutConformancePackInput) (req *request.Request, output *PutConformancePackOutput)

PutConformancePackRequest generates a "aws/request.Request" representing the client's request for the PutConformancePack operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutConformancePack for more information on using the PutConformancePack API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutConformancePackRequest method.
req, resp := client.PutConformancePackRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConformancePack

func (*ConfigService) PutConformancePackWithContext added in v1.25.38

func (c *ConfigService) PutConformancePackWithContext(ctx aws.Context, input *PutConformancePackInput, opts ...request.Option) (*PutConformancePackOutput, error)

PutConformancePackWithContext is the same as PutConformancePack with the addition of the ability to pass a context and additional request options.

See PutConformancePack for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutDeliveryChannel

func (c *ConfigService) PutDeliveryChannel(input *PutDeliveryChannelInput) (*PutDeliveryChannelOutput, error)

PutDeliveryChannel API operation for AWS Config.

Creates a delivery channel object to deliver configuration information and other compliance information to an Amazon S3 bucket and Amazon SNS topic. For more information, see Notifications that Config Sends to an Amazon SNS topic (https://docs.aws.amazon.com/config/latest/developerguide/notifications-for-AWS-Config.html).

Before you can create a delivery channel, you must create a configuration recorder.

You can use this action to change the Amazon S3 bucket or an Amazon SNS topic of the existing delivery channel. To change the Amazon S3 bucket or an Amazon SNS topic, call this action and specify the changed values for the S3 bucket and the SNS topic. If you specify a different value for either the S3 bucket or the SNS topic, this action will keep the existing value for the parameter that is not changed.

You can have only one delivery channel per region in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutDeliveryChannel for usage and error information.

Returned Error Types:

  • MaxNumberOfDeliveryChannelsExceededException You have reached the limit of the number of delivery channels you can create.

  • NoAvailableConfigurationRecorderException There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

  • InvalidDeliveryChannelNameException The specified delivery channel name is not valid.

  • NoSuchBucketException The specified Amazon S3 bucket does not exist.

  • InvalidS3KeyPrefixException The specified Amazon S3 key prefix is not valid.

  • InvalidS3KmsKeyArnException The specified Amazon KMS Key ARN is not valid.

  • InvalidSNSTopicARNException The specified Amazon SNS topic does not exist.

  • InsufficientDeliveryPolicyException Your Amazon S3 bucket policy does not permit Config to write to it.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutDeliveryChannel

func (*ConfigService) PutDeliveryChannelRequest

func (c *ConfigService) PutDeliveryChannelRequest(input *PutDeliveryChannelInput) (req *request.Request, output *PutDeliveryChannelOutput)

PutDeliveryChannelRequest generates a "aws/request.Request" representing the client's request for the PutDeliveryChannel operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutDeliveryChannel for more information on using the PutDeliveryChannel API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutDeliveryChannelRequest method.
req, resp := client.PutDeliveryChannelRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutDeliveryChannel

func (*ConfigService) PutDeliveryChannelWithContext added in v1.8.0

func (c *ConfigService) PutDeliveryChannelWithContext(ctx aws.Context, input *PutDeliveryChannelInput, opts ...request.Option) (*PutDeliveryChannelOutput, error)

PutDeliveryChannelWithContext is the same as PutDeliveryChannel with the addition of the ability to pass a context and additional request options.

See PutDeliveryChannel for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutEvaluations added in v0.9.13

func (c *ConfigService) PutEvaluations(input *PutEvaluationsInput) (*PutEvaluationsOutput, error)

PutEvaluations API operation for AWS Config.

Used by an Lambda function to deliver evaluation results to Config. This action is required in every Lambda function that is invoked by an Config rule.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutEvaluations for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InvalidResultTokenException The specified ResultToken is not valid.

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutEvaluations

func (*ConfigService) PutEvaluationsRequest added in v0.9.13

func (c *ConfigService) PutEvaluationsRequest(input *PutEvaluationsInput) (req *request.Request, output *PutEvaluationsOutput)

PutEvaluationsRequest generates a "aws/request.Request" representing the client's request for the PutEvaluations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutEvaluations for more information on using the PutEvaluations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutEvaluationsRequest method.
req, resp := client.PutEvaluationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutEvaluations

func (*ConfigService) PutEvaluationsWithContext added in v1.8.0

func (c *ConfigService) PutEvaluationsWithContext(ctx aws.Context, input *PutEvaluationsInput, opts ...request.Option) (*PutEvaluationsOutput, error)

PutEvaluationsWithContext is the same as PutEvaluations with the addition of the ability to pass a context and additional request options.

See PutEvaluations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutExternalEvaluation added in v1.36.11

func (c *ConfigService) PutExternalEvaluation(input *PutExternalEvaluationInput) (*PutExternalEvaluationOutput, error)

PutExternalEvaluation API operation for AWS Config.

Add or updates the evaluations for process checks. This API checks if the rule is a process check when the name of the Config rule is provided.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutExternalEvaluation for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutExternalEvaluation

func (*ConfigService) PutExternalEvaluationRequest added in v1.36.11

func (c *ConfigService) PutExternalEvaluationRequest(input *PutExternalEvaluationInput) (req *request.Request, output *PutExternalEvaluationOutput)

PutExternalEvaluationRequest generates a "aws/request.Request" representing the client's request for the PutExternalEvaluation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutExternalEvaluation for more information on using the PutExternalEvaluation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutExternalEvaluationRequest method.
req, resp := client.PutExternalEvaluationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutExternalEvaluation

func (*ConfigService) PutExternalEvaluationWithContext added in v1.36.11

func (c *ConfigService) PutExternalEvaluationWithContext(ctx aws.Context, input *PutExternalEvaluationInput, opts ...request.Option) (*PutExternalEvaluationOutput, error)

PutExternalEvaluationWithContext is the same as PutExternalEvaluation with the addition of the ability to pass a context and additional request options.

See PutExternalEvaluation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutOrganizationConfigRule added in v1.20.17

func (c *ConfigService) PutOrganizationConfigRule(input *PutOrganizationConfigRuleInput) (*PutOrganizationConfigRuleOutput, error)

PutOrganizationConfigRule API operation for AWS Config.

Adds or updates an Config rule for your entire organization to evaluate if your Amazon Web Services resources comply with your desired configurations. For information on how many organization Config rules you can have per account, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

Only a management account and a delegated administrator can create or update an organization Config rule. When calling this API with a delegated administrator, you must ensure Organizations ListDelegatedAdministrator permissions are added. An organization can have up to 3 delegated administrators.

This API enables organization service access through the EnableAWSServiceAccess action and creates a service-linked role AWSServiceRoleForConfigMultiAccountSetup in the management or delegated administrator account of your organization. The service-linked role is created only when the role does not exist in the caller account. Config verifies the existence of role with GetRole action.

To use this API with delegated administrator, register a delegated administrator by calling Amazon Web Services Organization register-delegated-administrator for config-multiaccountsetup.amazonaws.com.

There are two types of rules: Config Managed Rules and Config Custom Rules. You can use PutOrganizationConfigRule to create both Config Managed Rules and Config Custom Rules.

Config Managed Rules are predefined, customizable rules created by Config. For a list of managed rules, see List of Config Managed Rules (https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an Config managed rule, you must specify the rule's identifier for the RuleIdentifier key.

Config Custom Rules are rules that you create from scratch. There are two ways to create Config custom rules: with Lambda functions ( Lambda Developer Guide (https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with Guard (Guard GitHub Repository (https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. Config custom rules created with Lambda are called Config Custom Lambda Rules and Config custom rules created with Guard are called Config Custom Policy Rules.

If you are adding a new Config Custom Lambda rule, you first need to create an Lambda function in the management account or a delegated administrator that the rule invokes to evaluate your resources. You also need to create an IAM role in the managed account that can be assumed by the Lambda function. When you use PutOrganizationConfigRule to add a Custom Lambda rule to Config, you must specify the Amazon Resource Name (ARN) that Lambda assigns to the function.

Prerequisite: Ensure you call EnableAllFeatures API to enable all features in an organization.

Make sure to specify one of either OrganizationCustomPolicyRuleMetadata for Custom Policy rules, OrganizationCustomRuleMetadata for Custom Lambda rules, or OrganizationManagedRuleMetadata for managed rules.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutOrganizationConfigRule for usage and error information.

Returned Error Types:

  • MaxNumberOfOrganizationConfigRulesExceededException You have reached the limit of the number of organization Config rules you can create. For more information, see see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

  • NoAvailableOrganizationException Organization is no longer available.

  • OrganizationAllFeaturesNotEnabledException Config resource cannot be created because your organization does not have all features enabled.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRule

func (*ConfigService) PutOrganizationConfigRuleRequest added in v1.20.17

func (c *ConfigService) PutOrganizationConfigRuleRequest(input *PutOrganizationConfigRuleInput) (req *request.Request, output *PutOrganizationConfigRuleOutput)

PutOrganizationConfigRuleRequest generates a "aws/request.Request" representing the client's request for the PutOrganizationConfigRule operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutOrganizationConfigRule for more information on using the PutOrganizationConfigRule API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutOrganizationConfigRuleRequest method.
req, resp := client.PutOrganizationConfigRuleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConfigRule

func (*ConfigService) PutOrganizationConfigRuleWithContext added in v1.20.17

func (c *ConfigService) PutOrganizationConfigRuleWithContext(ctx aws.Context, input *PutOrganizationConfigRuleInput, opts ...request.Option) (*PutOrganizationConfigRuleOutput, error)

PutOrganizationConfigRuleWithContext is the same as PutOrganizationConfigRule with the addition of the ability to pass a context and additional request options.

See PutOrganizationConfigRule for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutOrganizationConformancePack added in v1.25.38

PutOrganizationConformancePack API operation for AWS Config.

Deploys conformance packs across member accounts in an Amazon Web Services Organization. For information on how many organization conformance packs and how many Config rules you can have per account, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

Only a management account and a delegated administrator can call this API. When calling this API with a delegated administrator, you must ensure Organizations ListDelegatedAdministrator permissions are added. An organization can have up to 3 delegated administrators.

This API enables organization service access for config-multiaccountsetup.amazonaws.com through the EnableAWSServiceAccess action and creates a service-linked role AWSServiceRoleForConfigMultiAccountSetup in the management or delegated administrator account of your organization. The service-linked role is created only when the role does not exist in the caller account. To use this API with delegated administrator, register a delegated administrator by calling Amazon Web Services Organization register-delegate-admin for config-multiaccountsetup.amazonaws.com.

Prerequisite: Ensure you call EnableAllFeatures API to enable all features in an organization.

You must specify either the TemplateS3Uri or the TemplateBody parameter, but not both. If you provide both Config uses the TemplateS3Uri parameter and ignores the TemplateBody parameter.

Config sets the state of a conformance pack to CREATE_IN_PROGRESS and UPDATE_IN_PROGRESS until the conformance pack is created or updated. You cannot update a conformance pack while it is in this state.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutOrganizationConformancePack for usage and error information.

Returned Error Types:

  • MaxNumberOfOrganizationConformancePacksExceededException You have reached the limit of the number of organization conformance packs you can create in an account. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • OrganizationAccessDeniedException For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

    For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • OrganizationConformancePackTemplateValidationException You have specified a template that is not valid or supported.

  • OrganizationAllFeaturesNotEnabledException Config resource cannot be created because your organization does not have all features enabled.

  • NoAvailableOrganizationException Organization is no longer available.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConformancePack

func (*ConfigService) PutOrganizationConformancePackRequest added in v1.25.38

func (c *ConfigService) PutOrganizationConformancePackRequest(input *PutOrganizationConformancePackInput) (req *request.Request, output *PutOrganizationConformancePackOutput)

PutOrganizationConformancePackRequest generates a "aws/request.Request" representing the client's request for the PutOrganizationConformancePack operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutOrganizationConformancePack for more information on using the PutOrganizationConformancePack API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutOrganizationConformancePackRequest method.
req, resp := client.PutOrganizationConformancePackRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutOrganizationConformancePack

func (*ConfigService) PutOrganizationConformancePackWithContext added in v1.25.38

func (c *ConfigService) PutOrganizationConformancePackWithContext(ctx aws.Context, input *PutOrganizationConformancePackInput, opts ...request.Option) (*PutOrganizationConformancePackOutput, error)

PutOrganizationConformancePackWithContext is the same as PutOrganizationConformancePack with the addition of the ability to pass a context and additional request options.

See PutOrganizationConformancePack for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutRemediationConfigurations added in v1.18.2

PutRemediationConfigurations API operation for AWS Config.

Adds or updates the remediation configuration with a specific Config rule with the selected target or action. The API creates the RemediationConfiguration object for the Config rule. The Config rule must already exist for you to add a remediation configuration. The target (SSM document) must exist and have permissions to use the target.

Be aware of backward incompatible changes

If you make backward incompatible changes to the SSM document, you must call this again to ensure the remediations can run.

This API does not support adding remediation configurations for service-linked Config Rules such as Organization Config rules, the rules deployed by conformance packs, and rules deployed by Amazon Web Services Security Hub.

Required fields

For manual remediation configuration, you need to provide a value for automationAssumeRole or use a value in the assumeRolefield to remediate your resources. The SSM automation document can use either as long as it maps to a valid parameter.

However, for automatic remediation configuration, the only valid assumeRole field value is AutomationAssumeRole and you need to provide a value for AutomationAssumeRole to remediate your resources.

Auto remediation can be initiated even for compliant resources

If you enable auto remediation for a specific Config rule using the PutRemediationConfigurations (https://docs.aws.amazon.com/config/latest/APIReference/emAPI_PutRemediationConfigurations.html) API or the Config console, it initiates the remediation process for all non-compliant resources for that specific rule. The auto remediation process relies on the compliance data snapshot which is captured on a periodic basis. Any non-compliant resource that is updated between the snapshot schedule will continue to be remediated based on the last known compliance data snapshot.

This means that in some cases auto remediation can be initiated even for compliant resources, since the bootstrap processor uses a database that can have stale evaluation results based on the last known compliance data snapshot.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutRemediationConfigurations for usage and error information.

Returned Error Types:

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRemediationConfigurations

func (*ConfigService) PutRemediationConfigurationsRequest added in v1.18.2

func (c *ConfigService) PutRemediationConfigurationsRequest(input *PutRemediationConfigurationsInput) (req *request.Request, output *PutRemediationConfigurationsOutput)

PutRemediationConfigurationsRequest generates a "aws/request.Request" representing the client's request for the PutRemediationConfigurations operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutRemediationConfigurations for more information on using the PutRemediationConfigurations API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutRemediationConfigurationsRequest method.
req, resp := client.PutRemediationConfigurationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRemediationConfigurations

func (*ConfigService) PutRemediationConfigurationsWithContext added in v1.18.2

func (c *ConfigService) PutRemediationConfigurationsWithContext(ctx aws.Context, input *PutRemediationConfigurationsInput, opts ...request.Option) (*PutRemediationConfigurationsOutput, error)

PutRemediationConfigurationsWithContext is the same as PutRemediationConfigurations with the addition of the ability to pass a context and additional request options.

See PutRemediationConfigurations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutRemediationExceptions added in v1.23.16

func (c *ConfigService) PutRemediationExceptions(input *PutRemediationExceptionsInput) (*PutRemediationExceptionsOutput, error)

PutRemediationExceptions API operation for AWS Config.

A remediation exception is when a specified resource is no longer considered for auto-remediation. This API adds a new exception or updates an existing exception for a specified resource with a specified Config rule.

Exceptions block auto remediation

Config generates a remediation exception when a problem occurs running a remediation action for a specified resource. Remediation exceptions blocks auto-remediation until the exception is cleared.

When placing an exception on an Amazon Web Services resource, it is recommended that remediation is set as manual remediation until the given Config rule for the specified resource evaluates the resource as NON_COMPLIANT. Once the resource has been evaluated as NON_COMPLIANT, you can add remediation exceptions and change the remediation type back from Manual to Auto if you want to use auto-remediation. Otherwise, using auto-remediation before a NON_COMPLIANT evaluation result can delete resources before the exception is applied.

Exceptions can only be performed on non-compliant resources

Placing an exception can only be performed on resources that are NON_COMPLIANT. If you use this API for COMPLIANT resources or resources that are NOT_APPLICABLE, a remediation exception will not be generated. For more information on the conditions that initiate the possible Config evaluation results, see Concepts | Config Rules (https://docs.aws.amazon.com/config/latest/developerguide/config-concepts.html#aws-config-rules) in the Config Developer Guide.

Auto remediation can be initiated even for compliant resources

If you enable auto remediation for a specific Config rule using the PutRemediationConfigurations (https://docs.aws.amazon.com/config/latest/APIReference/emAPI_PutRemediationConfigurations.html) API or the Config console, it initiates the remediation process for all non-compliant resources for that specific rule. The auto remediation process relies on the compliance data snapshot which is captured on a periodic basis. Any non-compliant resource that is updated between the snapshot schedule will continue to be remediated based on the last known compliance data snapshot.

This means that in some cases auto remediation can be initiated even for compliant resources, since the bootstrap processor uses a database that can have stale evaluation results based on the last known compliance data snapshot.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutRemediationExceptions for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRemediationExceptions

func (*ConfigService) PutRemediationExceptionsRequest added in v1.23.16

func (c *ConfigService) PutRemediationExceptionsRequest(input *PutRemediationExceptionsInput) (req *request.Request, output *PutRemediationExceptionsOutput)

PutRemediationExceptionsRequest generates a "aws/request.Request" representing the client's request for the PutRemediationExceptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutRemediationExceptions for more information on using the PutRemediationExceptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutRemediationExceptionsRequest method.
req, resp := client.PutRemediationExceptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRemediationExceptions

func (*ConfigService) PutRemediationExceptionsWithContext added in v1.23.16

func (c *ConfigService) PutRemediationExceptionsWithContext(ctx aws.Context, input *PutRemediationExceptionsInput, opts ...request.Option) (*PutRemediationExceptionsOutput, error)

PutRemediationExceptionsWithContext is the same as PutRemediationExceptions with the addition of the ability to pass a context and additional request options.

See PutRemediationExceptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutResourceConfig added in v1.25.40

func (c *ConfigService) PutResourceConfig(input *PutResourceConfigInput) (*PutResourceConfigOutput, error)

PutResourceConfig API operation for AWS Config.

Records the configuration state for the resource provided in the request. The configuration state of a resource is represented in Config as Configuration Items. Once this API records the configuration item, you can retrieve the list of configuration items for the custom resource type using existing Config APIs.

The custom resource type must be registered with CloudFormation. This API accepts the configuration item registered with CloudFormation.

When you call this API, Config only stores configuration state of the resource provided in the request. This API does not change or remediate the configuration of the resource.

Write-only schema properites are not recorded as part of the published configuration item.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutResourceConfig for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • NoRunningConfigurationRecorderException There is no configuration recorder running.

  • MaxActiveResourcesExceededException You have reached the limit of active custom resource types in your account. There is a limit of 100,000. Delete unused resources using DeleteResourceConfig (https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteResourceConfig.html) .

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutResourceConfig

func (*ConfigService) PutResourceConfigRequest added in v1.25.40

func (c *ConfigService) PutResourceConfigRequest(input *PutResourceConfigInput) (req *request.Request, output *PutResourceConfigOutput)

PutResourceConfigRequest generates a "aws/request.Request" representing the client's request for the PutResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutResourceConfig for more information on using the PutResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutResourceConfigRequest method.
req, resp := client.PutResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutResourceConfig

func (*ConfigService) PutResourceConfigWithContext added in v1.25.40

func (c *ConfigService) PutResourceConfigWithContext(ctx aws.Context, input *PutResourceConfigInput, opts ...request.Option) (*PutResourceConfigOutput, error)

PutResourceConfigWithContext is the same as PutResourceConfig with the addition of the ability to pass a context and additional request options.

See PutResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutRetentionConfiguration added in v1.13.56

func (c *ConfigService) PutRetentionConfiguration(input *PutRetentionConfigurationInput) (*PutRetentionConfigurationOutput, error)

PutRetentionConfiguration API operation for AWS Config.

Creates and updates the retention configuration with details about retention period (number of days) that Config stores your historical information. The API creates the RetentionConfiguration object and names the object as default. When you have a RetentionConfiguration object named default, calling the API modifies the default object.

Currently, Config supports only one retention configuration per region in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutRetentionConfiguration for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • MaxNumberOfRetentionConfigurationsExceededException Failed to add the retention configuration because a retention configuration with that name already exists.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRetentionConfiguration

func (*ConfigService) PutRetentionConfigurationRequest added in v1.13.56

func (c *ConfigService) PutRetentionConfigurationRequest(input *PutRetentionConfigurationInput) (req *request.Request, output *PutRetentionConfigurationOutput)

PutRetentionConfigurationRequest generates a "aws/request.Request" representing the client's request for the PutRetentionConfiguration operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutRetentionConfiguration for more information on using the PutRetentionConfiguration API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutRetentionConfigurationRequest method.
req, resp := client.PutRetentionConfigurationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutRetentionConfiguration

func (*ConfigService) PutRetentionConfigurationWithContext added in v1.13.56

func (c *ConfigService) PutRetentionConfigurationWithContext(ctx aws.Context, input *PutRetentionConfigurationInput, opts ...request.Option) (*PutRetentionConfigurationOutput, error)

PutRetentionConfigurationWithContext is the same as PutRetentionConfiguration with the addition of the ability to pass a context and additional request options.

See PutRetentionConfiguration for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) PutStoredQuery added in v1.36.13

func (c *ConfigService) PutStoredQuery(input *PutStoredQueryInput) (*PutStoredQueryOutput, error)

PutStoredQuery API operation for AWS Config.

Saves a new query or updates an existing saved query. The QueryName must be unique for a single Amazon Web Services account and a single Amazon Web Services Region. You can create upto 300 queries in a single Amazon Web Services account and a single Amazon Web Services Region.

PutStoredQuery is an idempotent API. Subsequent requests won’t create a duplicate resource if one was already created. If a following request has different tags values, Config will ignore these differences and treat it as an idempotent request of the previous. In this case, tags will not be updated, even if they are different.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation PutStoredQuery for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • TooManyTagsException You have reached the limit of the number of tags you can use. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

  • ResourceConcurrentModificationException Two users are trying to modify the same query at the same time. Wait for a moment and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutStoredQuery

func (*ConfigService) PutStoredQueryRequest added in v1.36.13

func (c *ConfigService) PutStoredQueryRequest(input *PutStoredQueryInput) (req *request.Request, output *PutStoredQueryOutput)

PutStoredQueryRequest generates a "aws/request.Request" representing the client's request for the PutStoredQuery operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutStoredQuery for more information on using the PutStoredQuery API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutStoredQueryRequest method.
req, resp := client.PutStoredQueryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutStoredQuery

func (*ConfigService) PutStoredQueryWithContext added in v1.36.13

func (c *ConfigService) PutStoredQueryWithContext(ctx aws.Context, input *PutStoredQueryInput, opts ...request.Option) (*PutStoredQueryOutput, error)

PutStoredQueryWithContext is the same as PutStoredQuery with the addition of the ability to pass a context and additional request options.

See PutStoredQuery for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) SelectAggregateResourceConfig added in v1.29.13

SelectAggregateResourceConfig API operation for AWS Config.

Accepts a structured query language (SQL) SELECT command and an aggregator to query configuration state of Amazon Web Services resources across multiple accounts and regions, performs the corresponding search, and returns resource configurations matching the properties.

For more information about query components, see the Query Components (https://docs.aws.amazon.com/config/latest/developerguide/query-components.html) section in the Config Developer Guide.

If you run an aggregation query (i.e., using GROUP BY or using aggregate functions such as COUNT; e.g., SELECT resourceId, COUNT(*) WHERE resourceType = 'AWS::IAM::Role' GROUP BY resourceId) and do not specify the MaxResults or the Limit query parameters, the default page size is set to 500.

If you run a non-aggregation query (i.e., not using GROUP BY or aggregate function; e.g., SELECT * WHERE resourceType = 'AWS::IAM::Role') and do not specify the MaxResults or the Limit query parameters, the default page size is set to 25.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation SelectAggregateResourceConfig for usage and error information.

Returned Error Types:

  • InvalidExpressionException The syntax of the query is incorrect.

  • NoSuchConfigurationAggregatorException You have specified a configuration aggregator that does not exist.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/SelectAggregateResourceConfig

func (*ConfigService) SelectAggregateResourceConfigPages added in v1.29.13

func (c *ConfigService) SelectAggregateResourceConfigPages(input *SelectAggregateResourceConfigInput, fn func(*SelectAggregateResourceConfigOutput, bool) bool) error

SelectAggregateResourceConfigPages iterates over the pages of a SelectAggregateResourceConfig operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See SelectAggregateResourceConfig method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a SelectAggregateResourceConfig operation.
pageNum := 0
err := client.SelectAggregateResourceConfigPages(params,
    func(page *configservice.SelectAggregateResourceConfigOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) SelectAggregateResourceConfigPagesWithContext added in v1.29.13

func (c *ConfigService) SelectAggregateResourceConfigPagesWithContext(ctx aws.Context, input *SelectAggregateResourceConfigInput, fn func(*SelectAggregateResourceConfigOutput, bool) bool, opts ...request.Option) error

SelectAggregateResourceConfigPagesWithContext same as SelectAggregateResourceConfigPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) SelectAggregateResourceConfigRequest added in v1.29.13

func (c *ConfigService) SelectAggregateResourceConfigRequest(input *SelectAggregateResourceConfigInput) (req *request.Request, output *SelectAggregateResourceConfigOutput)

SelectAggregateResourceConfigRequest generates a "aws/request.Request" representing the client's request for the SelectAggregateResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See SelectAggregateResourceConfig for more information on using the SelectAggregateResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the SelectAggregateResourceConfigRequest method.
req, resp := client.SelectAggregateResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/SelectAggregateResourceConfig

func (*ConfigService) SelectAggregateResourceConfigWithContext added in v1.29.13

func (c *ConfigService) SelectAggregateResourceConfigWithContext(ctx aws.Context, input *SelectAggregateResourceConfigInput, opts ...request.Option) (*SelectAggregateResourceConfigOutput, error)

SelectAggregateResourceConfigWithContext is the same as SelectAggregateResourceConfig with the addition of the ability to pass a context and additional request options.

See SelectAggregateResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) SelectResourceConfig added in v1.18.5

func (c *ConfigService) SelectResourceConfig(input *SelectResourceConfigInput) (*SelectResourceConfigOutput, error)

SelectResourceConfig API operation for AWS Config.

Accepts a structured query language (SQL) SELECT command, performs the corresponding search, and returns resource configurations matching the properties.

For more information about query components, see the Query Components (https://docs.aws.amazon.com/config/latest/developerguide/query-components.html) section in the Config Developer Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation SelectResourceConfig for usage and error information.

Returned Error Types:

  • InvalidExpressionException The syntax of the query is incorrect.

  • InvalidLimitException The specified limit is outside the allowable range.

  • InvalidNextTokenException The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/SelectResourceConfig

func (*ConfigService) SelectResourceConfigPages added in v1.38.37

func (c *ConfigService) SelectResourceConfigPages(input *SelectResourceConfigInput, fn func(*SelectResourceConfigOutput, bool) bool) error

SelectResourceConfigPages iterates over the pages of a SelectResourceConfig operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See SelectResourceConfig method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a SelectResourceConfig operation.
pageNum := 0
err := client.SelectResourceConfigPages(params,
    func(page *configservice.SelectResourceConfigOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*ConfigService) SelectResourceConfigPagesWithContext added in v1.38.37

func (c *ConfigService) SelectResourceConfigPagesWithContext(ctx aws.Context, input *SelectResourceConfigInput, fn func(*SelectResourceConfigOutput, bool) bool, opts ...request.Option) error

SelectResourceConfigPagesWithContext same as SelectResourceConfigPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) SelectResourceConfigRequest added in v1.18.5

func (c *ConfigService) SelectResourceConfigRequest(input *SelectResourceConfigInput) (req *request.Request, output *SelectResourceConfigOutput)

SelectResourceConfigRequest generates a "aws/request.Request" representing the client's request for the SelectResourceConfig operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See SelectResourceConfig for more information on using the SelectResourceConfig API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the SelectResourceConfigRequest method.
req, resp := client.SelectResourceConfigRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/SelectResourceConfig

func (*ConfigService) SelectResourceConfigWithContext added in v1.18.5

func (c *ConfigService) SelectResourceConfigWithContext(ctx aws.Context, input *SelectResourceConfigInput, opts ...request.Option) (*SelectResourceConfigOutput, error)

SelectResourceConfigWithContext is the same as SelectResourceConfig with the addition of the ability to pass a context and additional request options.

See SelectResourceConfig for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) StartConfigRulesEvaluation added in v1.2.7

func (c *ConfigService) StartConfigRulesEvaluation(input *StartConfigRulesEvaluationInput) (*StartConfigRulesEvaluationOutput, error)

StartConfigRulesEvaluation API operation for AWS Config.

Runs an on-demand evaluation for the specified Config rules against the last known configuration state of the resources. Use StartConfigRulesEvaluation when you want to test that a rule you updated is working as expected. StartConfigRulesEvaluation does not re-record the latest configuration state for your resources. It re-runs an evaluation against the last known state of your resources.

You can specify up to 25 Config rules per request.

An existing StartConfigRulesEvaluation call for the specified rules must complete before you can call the API again. If you chose to have Config stream to an Amazon SNS topic, you will receive a ConfigRuleEvaluationStarted notification when the evaluation starts.

You don't need to call the StartConfigRulesEvaluation API to run an evaluation for a new rule. When you create a rule, Config evaluates your resources against the rule automatically.

The StartConfigRulesEvaluation API is useful if you want to run on-demand evaluations, such as the following example:

You have a custom rule that evaluates your IAM resources every 24 hours.

You update your Lambda function to add additional conditions to your rule.

Instead of waiting for the next periodic evaluation, you call the StartConfigRulesEvaluation API.

Config invokes your Lambda function and evaluates your IAM resources.

Your custom rule will still run periodic evaluations every 24 hours.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation StartConfigRulesEvaluation for usage and error information.

Returned Error Types:

  • NoSuchConfigRuleException The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

  • LimitExceededException For StartConfigRulesEvaluation API, this exception is thrown if an evaluation is in progress or if you call the StartConfigRulesEvaluation API more than once per minute.

    For PutConfigurationAggregator API, this exception is thrown if the number of accounts and aggregators exceeds the limit.

  • ResourceInUseException You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartConfigRulesEvaluation

func (*ConfigService) StartConfigRulesEvaluationRequest added in v1.2.7

func (c *ConfigService) StartConfigRulesEvaluationRequest(input *StartConfigRulesEvaluationInput) (req *request.Request, output *StartConfigRulesEvaluationOutput)

StartConfigRulesEvaluationRequest generates a "aws/request.Request" representing the client's request for the StartConfigRulesEvaluation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartConfigRulesEvaluation for more information on using the StartConfigRulesEvaluation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartConfigRulesEvaluationRequest method.
req, resp := client.StartConfigRulesEvaluationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartConfigRulesEvaluation

func (*ConfigService) StartConfigRulesEvaluationWithContext added in v1.8.0

func (c *ConfigService) StartConfigRulesEvaluationWithContext(ctx aws.Context, input *StartConfigRulesEvaluationInput, opts ...request.Option) (*StartConfigRulesEvaluationOutput, error)

StartConfigRulesEvaluationWithContext is the same as StartConfigRulesEvaluation with the addition of the ability to pass a context and additional request options.

See StartConfigRulesEvaluation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) StartConfigurationRecorder

func (c *ConfigService) StartConfigurationRecorder(input *StartConfigurationRecorderInput) (*StartConfigurationRecorderOutput, error)

StartConfigurationRecorder API operation for AWS Config.

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

You must have created at least one delivery channel to successfully start the configuration recorder.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation StartConfigurationRecorder for usage and error information.

Returned Error Types:

  • NoSuchConfigurationRecorderException You have specified a configuration recorder that does not exist.

  • NoAvailableDeliveryChannelException There is no delivery channel available to record configurations.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartConfigurationRecorder

func (*ConfigService) StartConfigurationRecorderRequest

func (c *ConfigService) StartConfigurationRecorderRequest(input *StartConfigurationRecorderInput) (req *request.Request, output *StartConfigurationRecorderOutput)

StartConfigurationRecorderRequest generates a "aws/request.Request" representing the client's request for the StartConfigurationRecorder operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartConfigurationRecorder for more information on using the StartConfigurationRecorder API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartConfigurationRecorderRequest method.
req, resp := client.StartConfigurationRecorderRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartConfigurationRecorder

func (*ConfigService) StartConfigurationRecorderWithContext added in v1.8.0

func (c *ConfigService) StartConfigurationRecorderWithContext(ctx aws.Context, input *StartConfigurationRecorderInput, opts ...request.Option) (*StartConfigurationRecorderOutput, error)

StartConfigurationRecorderWithContext is the same as StartConfigurationRecorder with the addition of the ability to pass a context and additional request options.

See StartConfigurationRecorder for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) StartRemediationExecution added in v1.18.2

func (c *ConfigService) StartRemediationExecution(input *StartRemediationExecutionInput) (*StartRemediationExecutionOutput, error)

StartRemediationExecution API operation for AWS Config.

Runs an on-demand remediation for the specified Config rules against the last known remediation configuration. It runs an execution against the current state of your resources. Remediation execution is asynchronous.

You can specify up to 100 resource keys per request. An existing StartRemediationExecution call for the specified resource keys must complete before you can call the API again.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation StartRemediationExecution for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • InsufficientPermissionsException Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

  • NoSuchRemediationConfigurationException You specified an Config rule without a remediation configuration.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartRemediationExecution

func (*ConfigService) StartRemediationExecutionRequest added in v1.18.2

func (c *ConfigService) StartRemediationExecutionRequest(input *StartRemediationExecutionInput) (req *request.Request, output *StartRemediationExecutionOutput)

StartRemediationExecutionRequest generates a "aws/request.Request" representing the client's request for the StartRemediationExecution operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartRemediationExecution for more information on using the StartRemediationExecution API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartRemediationExecutionRequest method.
req, resp := client.StartRemediationExecutionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartRemediationExecution

func (*ConfigService) StartRemediationExecutionWithContext added in v1.18.2

func (c *ConfigService) StartRemediationExecutionWithContext(ctx aws.Context, input *StartRemediationExecutionInput, opts ...request.Option) (*StartRemediationExecutionOutput, error)

StartRemediationExecutionWithContext is the same as StartRemediationExecution with the addition of the ability to pass a context and additional request options.

See StartRemediationExecution for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) StartResourceEvaluation added in v1.44.147

func (c *ConfigService) StartResourceEvaluation(input *StartResourceEvaluationInput) (*StartResourceEvaluationOutput, error)

StartResourceEvaluation API operation for AWS Config.

Runs an on-demand evaluation for the specified resource to determine whether the resource details will comply with configured Config rules. You can also use it for evaluation purposes. Config recommends using an evaluation context. It runs an execution against the resource details with all of the Config rules in your account that match with the specified proactive mode and resource type.

Ensure you have the cloudformation:DescribeType role setup to validate the resource type schema.

You can find the Resource type schema (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html) in "Amazon Web Services public extensions" within the CloudFormation registry or with the following CLI commmand: aws cloudformation describe-type --type-name "AWS::S3::Bucket" --type RESOURCE.

For more information, see Managing extensions through the CloudFormation registry (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry.html#registry-view) and Amazon Web Services resource and property types reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html) in the CloudFormation User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation StartResourceEvaluation for usage and error information.

Returned Error Types:

  • InvalidParameterValueException One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

  • IdempotentParameterMismatch Using the same client token with one or more different parameters. Specify a new client token with the parameter changes and try again.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartResourceEvaluation

func (*ConfigService) StartResourceEvaluationRequest added in v1.44.147

func (c *ConfigService) StartResourceEvaluationRequest(input *StartResourceEvaluationInput) (req *request.Request, output *StartResourceEvaluationOutput)

StartResourceEvaluationRequest generates a "aws/request.Request" representing the client's request for the StartResourceEvaluation operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StartResourceEvaluation for more information on using the StartResourceEvaluation API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StartResourceEvaluationRequest method.
req, resp := client.StartResourceEvaluationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StartResourceEvaluation

func (*ConfigService) StartResourceEvaluationWithContext added in v1.44.147

func (c *ConfigService) StartResourceEvaluationWithContext(ctx aws.Context, input *StartResourceEvaluationInput, opts ...request.Option) (*StartResourceEvaluationOutput, error)

StartResourceEvaluationWithContext is the same as StartResourceEvaluation with the addition of the ability to pass a context and additional request options.

See StartResourceEvaluation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) StopConfigurationRecorder

func (c *ConfigService) StopConfigurationRecorder(input *StopConfigurationRecorderInput) (*StopConfigurationRecorderOutput, error)

StopConfigurationRecorder API operation for AWS Config.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation StopConfigurationRecorder for usage and error information.

Returned Error Types:

  • NoSuchConfigurationRecorderException You have specified a configuration recorder that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StopConfigurationRecorder

func (*ConfigService) StopConfigurationRecorderRequest

func (c *ConfigService) StopConfigurationRecorderRequest(input *StopConfigurationRecorderInput) (req *request.Request, output *StopConfigurationRecorderOutput)

StopConfigurationRecorderRequest generates a "aws/request.Request" representing the client's request for the StopConfigurationRecorder operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See StopConfigurationRecorder for more information on using the StopConfigurationRecorder API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the StopConfigurationRecorderRequest method.
req, resp := client.StopConfigurationRecorderRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/StopConfigurationRecorder

func (*ConfigService) StopConfigurationRecorderWithContext added in v1.8.0

func (c *ConfigService) StopConfigurationRecorderWithContext(ctx aws.Context, input *StopConfigurationRecorderInput, opts ...request.Option) (*StopConfigurationRecorderOutput, error)

StopConfigurationRecorderWithContext is the same as StopConfigurationRecorder with the addition of the ability to pass a context and additional request options.

See StopConfigurationRecorder for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) TagResource added in v1.18.3

func (c *ConfigService) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource API operation for AWS Config.

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. If existing tags are specified, however, then their values will be updated. When a resource is deleted, the tags associated with that resource are deleted as well.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation TagResource for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • ResourceNotFoundException You have specified a resource that does not exist.

  • TooManyTagsException You have reached the limit of the number of tags you can use. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/TagResource

func (*ConfigService) TagResourceRequest added in v1.18.3

func (c *ConfigService) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

TagResourceRequest generates a "aws/request.Request" representing the client's request for the TagResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See TagResource for more information on using the TagResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the TagResourceRequest method.
req, resp := client.TagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/TagResource

func (*ConfigService) TagResourceWithContext added in v1.18.3

func (c *ConfigService) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

TagResourceWithContext is the same as TagResource with the addition of the ability to pass a context and additional request options.

See TagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*ConfigService) UntagResource added in v1.18.3

func (c *ConfigService) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource API operation for AWS Config.

Deletes specified tags from a resource.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS Config's API operation UntagResource for usage and error information.

Returned Error Types:

  • ValidationException The requested action is not valid.

    For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

    For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

  • ResourceNotFoundException You have specified a resource that does not exist.

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/UntagResource

func (*ConfigService) UntagResourceRequest added in v1.18.3

func (c *ConfigService) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

UntagResourceRequest generates a "aws/request.Request" representing the client's request for the UntagResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UntagResource for more information on using the UntagResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UntagResourceRequest method.
req, resp := client.UntagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

See also, https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/UntagResource

func (*ConfigService) UntagResourceWithContext added in v1.18.3

func (c *ConfigService) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

UntagResourceWithContext is the same as UntagResource with the addition of the ability to pass a context and additional request options.

See UntagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type ConfigSnapshotDeliveryProperties added in v0.9.13

type ConfigSnapshotDeliveryProperties struct {

	// The frequency with which Config delivers configuration snapshots.
	DeliveryFrequency *string `locationName:"deliveryFrequency" type:"string" enum:"MaximumExecutionFrequency"`
	// contains filtered or unexported fields
}

Provides options for how often Config delivers configuration snapshots to the Amazon S3 bucket in your delivery channel.

The frequency for a rule that triggers evaluations for your resources when Config delivers the configuration snapshot is set by one of two values, depending on which is less frequent:

  • The value for the deliveryFrequency parameter within the delivery channel configuration, which sets how often Config delivers configuration snapshots. This value also sets how often Config invokes evaluations for Config rules.

  • The value for the MaximumExecutionFrequency parameter, which sets the maximum frequency with which Config invokes evaluations for the rule. For more information, see ConfigRule.

If the deliveryFrequency value is less frequent than the MaximumExecutionFrequency value for a rule, Config invokes the rule only as often as the deliveryFrequency value.

For example, you want your rule to run evaluations when Config delivers the configuration snapshot.

You specify the MaximumExecutionFrequency value for Six_Hours.

You then specify the delivery channel deliveryFrequency value for TwentyFour_Hours.

Because the value for deliveryFrequency is less frequent than MaximumExecutionFrequency, Config invokes evaluations for the rule every 24 hours.

You should set the MaximumExecutionFrequency value to be at least as frequent as the deliveryFrequency value. You can view the deliveryFrequency value by using the DescribeDeliveryChannnels action.

To update the deliveryFrequency with which Config delivers your configuration snapshots, use the PutDeliveryChannel action.

func (ConfigSnapshotDeliveryProperties) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigSnapshotDeliveryProperties) SetDeliveryFrequency added in v1.5.0

SetDeliveryFrequency sets the DeliveryFrequency field's value.

func (ConfigSnapshotDeliveryProperties) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigStreamDeliveryInfo

type ConfigStreamDeliveryInfo struct {

	// The error code from the last attempted delivery.
	LastErrorCode *string `locationName:"lastErrorCode" type:"string"`

	// The error message from the last attempted delivery.
	LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`

	// Status of the last attempted delivery.
	//
	// Note Providing an SNS topic on a DeliveryChannel (https://docs.aws.amazon.com/config/latest/APIReference/API_DeliveryChannel.html)
	// for Config is optional. If the SNS delivery is turned off, the last status
	// will be Not_Applicable.
	LastStatus *string `locationName:"lastStatus" type:"string" enum:"DeliveryStatus"`

	// The time from the last status change.
	LastStatusChangeTime *time.Time `locationName:"lastStatusChangeTime" type:"timestamp"`
	// contains filtered or unexported fields
}

A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic.

func (ConfigStreamDeliveryInfo) GoString added in v0.6.5

func (s ConfigStreamDeliveryInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigStreamDeliveryInfo) SetLastErrorCode added in v1.5.0

SetLastErrorCode sets the LastErrorCode field's value.

func (*ConfigStreamDeliveryInfo) SetLastErrorMessage added in v1.5.0

func (s *ConfigStreamDeliveryInfo) SetLastErrorMessage(v string) *ConfigStreamDeliveryInfo

SetLastErrorMessage sets the LastErrorMessage field's value.

func (*ConfigStreamDeliveryInfo) SetLastStatus added in v1.5.0

SetLastStatus sets the LastStatus field's value.

func (*ConfigStreamDeliveryInfo) SetLastStatusChangeTime added in v1.5.0

func (s *ConfigStreamDeliveryInfo) SetLastStatusChangeTime(v time.Time) *ConfigStreamDeliveryInfo

SetLastStatusChangeTime sets the LastStatusChangeTime field's value.

func (ConfigStreamDeliveryInfo) String added in v0.6.5

func (s ConfigStreamDeliveryInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigurationAggregator added in v1.13.28

type ConfigurationAggregator struct {

	// Provides a list of source accounts and regions to be aggregated.
	AccountAggregationSources []*AccountAggregationSource `type:"list"`

	// The Amazon Resource Name (ARN) of the aggregator.
	ConfigurationAggregatorArn *string `type:"string"`

	// The name of the aggregator.
	ConfigurationAggregatorName *string `min:"1" type:"string"`

	// Amazon Web Services service that created the configuration aggregator.
	CreatedBy *string `min:"1" type:"string"`

	// The time stamp when the configuration aggregator was created.
	CreationTime *time.Time `type:"timestamp"`

	// The time of the last update.
	LastUpdatedTime *time.Time `type:"timestamp"`

	// Provides an organization and list of regions to be aggregated.
	OrganizationAggregationSource *OrganizationAggregationSource `type:"structure"`
	// contains filtered or unexported fields
}

The details about the configuration aggregator, including information about source accounts, regions, and metadata of the aggregator.

func (ConfigurationAggregator) GoString added in v1.13.28

func (s ConfigurationAggregator) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigurationAggregator) SetAccountAggregationSources added in v1.13.28

func (s *ConfigurationAggregator) SetAccountAggregationSources(v []*AccountAggregationSource) *ConfigurationAggregator

SetAccountAggregationSources sets the AccountAggregationSources field's value.

func (*ConfigurationAggregator) SetConfigurationAggregatorArn added in v1.13.28

func (s *ConfigurationAggregator) SetConfigurationAggregatorArn(v string) *ConfigurationAggregator

SetConfigurationAggregatorArn sets the ConfigurationAggregatorArn field's value.

func (*ConfigurationAggregator) SetConfigurationAggregatorName added in v1.13.28

func (s *ConfigurationAggregator) SetConfigurationAggregatorName(v string) *ConfigurationAggregator

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*ConfigurationAggregator) SetCreatedBy added in v1.33.11

SetCreatedBy sets the CreatedBy field's value.

func (*ConfigurationAggregator) SetCreationTime added in v1.13.28

SetCreationTime sets the CreationTime field's value.

func (*ConfigurationAggregator) SetLastUpdatedTime added in v1.13.28

func (s *ConfigurationAggregator) SetLastUpdatedTime(v time.Time) *ConfigurationAggregator

SetLastUpdatedTime sets the LastUpdatedTime field's value.

func (*ConfigurationAggregator) SetOrganizationAggregationSource added in v1.13.28

func (s *ConfigurationAggregator) SetOrganizationAggregationSource(v *OrganizationAggregationSource) *ConfigurationAggregator

SetOrganizationAggregationSource sets the OrganizationAggregationSource field's value.

func (ConfigurationAggregator) String added in v1.13.28

func (s ConfigurationAggregator) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigurationItem

type ConfigurationItem struct {

	// The 12-digit Amazon Web Services account ID associated with the resource.
	AccountId *string `locationName:"accountId" type:"string"`

	// Amazon Resource Name (ARN) associated with the resource.
	Arn *string `locationName:"arn" type:"string"`

	// The Availability Zone associated with the resource.
	AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

	// The region where the resource resides.
	AwsRegion *string `locationName:"awsRegion" min:"1" type:"string"`

	// The description of the resource configuration.
	Configuration *string `locationName:"configuration" type:"string"`

	// The time when the recording of configuration changes was initiated for the
	// resource.
	ConfigurationItemCaptureTime *time.Time `locationName:"configurationItemCaptureTime" type:"timestamp"`

	// The time when configuration changes for the resource were delivered.
	//
	// This field is optional and is not guaranteed to be present in a configuration
	// item (CI). If you are using daily recording, this field will be populated.
	// However, if you are using continuous recording, this field will be omitted
	// since the delivery time is instantaneous as the CI is available right away.
	// For more information on daily recording and continuous recording, see Recording
	// Frequency (https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-recording-frequency)
	// in the Config Developer Guide.
	ConfigurationItemDeliveryTime *time.Time `locationName:"configurationItemDeliveryTime" type:"timestamp"`

	// Unique MD5 hash that represents the configuration item's state.
	//
	// You can use MD5 hash to compare the states of two or more configuration items
	// that are associated with the same resource.
	ConfigurationItemMD5Hash *string `locationName:"configurationItemMD5Hash" type:"string"`

	// The configuration item status. Valid values include:
	//
	//    * OK – The resource configuration has been updated
	//
	//    * ResourceDiscovered – The resource was newly discovered
	//
	//    * ResourceNotRecorded – The resource was discovered but its configuration
	//    was not recorded since the recorder doesn't record resources of this type
	//
	//    * ResourceDeleted – The resource was deleted
	//
	//    * ResourceDeletedNotRecorded – The resource was deleted but its configuration
	//    was not recorded since the recorder doesn't record resources of this type
	ConfigurationItemStatus *string `locationName:"configurationItemStatus" type:"string" enum:"ConfigurationItemStatus"`

	// An identifier that indicates the ordering of the configuration items of a
	// resource.
	ConfigurationStateId *string `locationName:"configurationStateId" type:"string"`

	// The recording frequency that Config uses to record configuration changes
	// for the resource.
	RecordingFrequency *string `locationName:"recordingFrequency" type:"string" enum:"RecordingFrequency"`

	// A list of CloudTrail event IDs.
	//
	// A populated field indicates that the current configuration was initiated
	// by the events recorded in the CloudTrail log. For more information about
	// CloudTrail, see What Is CloudTrail (https://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html).
	//
	// An empty field indicates that the current configuration was not initiated
	// by any event. As of Version 1.3, the relatedEvents field is empty. You can
	// access the LookupEvents API (https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_LookupEvents.html)
	// in the CloudTrail API Reference to retrieve the events for the resource.
	RelatedEvents []*string `locationName:"relatedEvents" type:"list"`

	// A list of related Amazon Web Services resources.
	Relationships []*Relationship `locationName:"relationships" type:"list"`

	// The time stamp when the resource was created.
	ResourceCreationTime *time.Time `locationName:"resourceCreationTime" type:"timestamp"`

	// The ID of the resource (for example, sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" min:"1" type:"string"`

	// The custom name of the resource, if available.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of Amazon Web Services resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`

	// Configuration attributes that Config returns for certain resource types to
	// supplement the information returned for the configuration parameter.
	SupplementaryConfiguration map[string]*string `locationName:"supplementaryConfiguration" type:"map"`

	// A mapping of key value tags associated with the resource.
	Tags map[string]*string `locationName:"tags" type:"map"`

	// The version number of the resource configuration.
	Version *string `locationName:"version" type:"string"`
	// contains filtered or unexported fields
}

A list that contains detailed configurations of a specified resource.

func (ConfigurationItem) GoString added in v0.6.5

func (s ConfigurationItem) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigurationItem) SetAccountId added in v1.5.0

func (s *ConfigurationItem) SetAccountId(v string) *ConfigurationItem

SetAccountId sets the AccountId field's value.

func (*ConfigurationItem) SetArn added in v1.5.0

SetArn sets the Arn field's value.

func (*ConfigurationItem) SetAvailabilityZone added in v1.5.0

func (s *ConfigurationItem) SetAvailabilityZone(v string) *ConfigurationItem

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ConfigurationItem) SetAwsRegion added in v1.5.0

func (s *ConfigurationItem) SetAwsRegion(v string) *ConfigurationItem

SetAwsRegion sets the AwsRegion field's value.

func (*ConfigurationItem) SetConfiguration added in v1.5.0

func (s *ConfigurationItem) SetConfiguration(v string) *ConfigurationItem

SetConfiguration sets the Configuration field's value.

func (*ConfigurationItem) SetConfigurationItemCaptureTime added in v1.5.0

func (s *ConfigurationItem) SetConfigurationItemCaptureTime(v time.Time) *ConfigurationItem

SetConfigurationItemCaptureTime sets the ConfigurationItemCaptureTime field's value.

func (*ConfigurationItem) SetConfigurationItemDeliveryTime added in v1.48.4

func (s *ConfigurationItem) SetConfigurationItemDeliveryTime(v time.Time) *ConfigurationItem

SetConfigurationItemDeliveryTime sets the ConfigurationItemDeliveryTime field's value.

func (*ConfigurationItem) SetConfigurationItemMD5Hash added in v1.5.0

func (s *ConfigurationItem) SetConfigurationItemMD5Hash(v string) *ConfigurationItem

SetConfigurationItemMD5Hash sets the ConfigurationItemMD5Hash field's value.

func (*ConfigurationItem) SetConfigurationItemStatus added in v1.5.0

func (s *ConfigurationItem) SetConfigurationItemStatus(v string) *ConfigurationItem

SetConfigurationItemStatus sets the ConfigurationItemStatus field's value.

func (*ConfigurationItem) SetConfigurationStateId added in v1.5.0

func (s *ConfigurationItem) SetConfigurationStateId(v string) *ConfigurationItem

SetConfigurationStateId sets the ConfigurationStateId field's value.

func (*ConfigurationItem) SetRecordingFrequency added in v1.48.4

func (s *ConfigurationItem) SetRecordingFrequency(v string) *ConfigurationItem

SetRecordingFrequency sets the RecordingFrequency field's value.

func (*ConfigurationItem) SetRelatedEvents added in v1.5.0

func (s *ConfigurationItem) SetRelatedEvents(v []*string) *ConfigurationItem

SetRelatedEvents sets the RelatedEvents field's value.

func (*ConfigurationItem) SetRelationships added in v1.5.0

func (s *ConfigurationItem) SetRelationships(v []*Relationship) *ConfigurationItem

SetRelationships sets the Relationships field's value.

func (*ConfigurationItem) SetResourceCreationTime added in v1.5.0

func (s *ConfigurationItem) SetResourceCreationTime(v time.Time) *ConfigurationItem

SetResourceCreationTime sets the ResourceCreationTime field's value.

func (*ConfigurationItem) SetResourceId added in v1.5.0

func (s *ConfigurationItem) SetResourceId(v string) *ConfigurationItem

SetResourceId sets the ResourceId field's value.

func (*ConfigurationItem) SetResourceName added in v1.5.0

func (s *ConfigurationItem) SetResourceName(v string) *ConfigurationItem

SetResourceName sets the ResourceName field's value.

func (*ConfigurationItem) SetResourceType added in v1.5.0

func (s *ConfigurationItem) SetResourceType(v string) *ConfigurationItem

SetResourceType sets the ResourceType field's value.

func (*ConfigurationItem) SetSupplementaryConfiguration added in v1.5.0

func (s *ConfigurationItem) SetSupplementaryConfiguration(v map[string]*string) *ConfigurationItem

SetSupplementaryConfiguration sets the SupplementaryConfiguration field's value.

func (*ConfigurationItem) SetTags added in v1.5.0

func (s *ConfigurationItem) SetTags(v map[string]*string) *ConfigurationItem

SetTags sets the Tags field's value.

func (*ConfigurationItem) SetVersion added in v1.5.0

func (s *ConfigurationItem) SetVersion(v string) *ConfigurationItem

SetVersion sets the Version field's value.

func (ConfigurationItem) String added in v0.6.5

func (s ConfigurationItem) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConfigurationRecorder

type ConfigurationRecorder struct {

	// The name of the configuration recorder. Config automatically assigns the
	// name of "default" when creating the configuration recorder.
	//
	// You cannot change the name of the configuration recorder after it has been
	// created. To change the configuration recorder name, you must delete it and
	// create a new configuration recorder with a new name.
	Name *string `locationName:"name" min:"1" type:"string"`

	// Specifies which resource types Config records for configuration changes.
	//
	//  High Number of Config Evaluations
	//
	// You may notice increased activity in your account during your initial month
	// recording with Config when compared to subsequent months. During the initial
	// bootstrapping process, Config runs evaluations on all the resources in your
	// account that you have selected for Config to record.
	//
	// If you are running ephemeral workloads, you may see increased activity from
	// Config as it records configuration changes associated with creating and deleting
	// these temporary resources. An ephemeral workload is a temporary use of computing
	// resources that are loaded and run when needed. Examples include Amazon Elastic
	// Compute Cloud (Amazon EC2) Spot Instances, Amazon EMR jobs, and Auto Scaling.
	// If you want to avoid the increased activity from running ephemeral workloads,
	// you can run these types of workloads in a separate account with Config turned
	// off to avoid increased configuration recording and rule evaluations.
	RecordingGroup *RecordingGroup `locationName:"recordingGroup" type:"structure"`

	// Specifies the default recording frequency that Config uses to record configuration
	// changes. Config supports Continuous recording and Daily recording.
	//
	//    * Continuous recording allows you to record configuration changes continuously
	//    whenever a change occurs.
	//
	//    * Daily recording allows you to receive a configuration item (CI) representing
	//    the most recent state of your resources over the last 24-hour period,
	//    only if it’s different from the previous CI recorded.
	//
	// Firewall Manager depends on continuous recording to monitor your resources.
	// If you are using Firewall Manager, it is recommended that you set the recording
	// frequency to Continuous.
	//
	// You can also override the recording frequency for specific resource types.
	RecordingMode *RecordingMode `locationName:"recordingMode" type:"structure"`

	// Amazon Resource Name (ARN) of the IAM role assumed by Config and used by
	// the configuration recorder.
	//
	// While the API model does not require this field, the server will reject a
	// request without a defined roleARN for the configuration recorder.
	//
	// Pre-existing Config role
	//
	// If you have used an Amazon Web Services service that uses Config, such as
	// Security Hub or Control Tower, and an Config role has already been created,
	// make sure that the IAM role that you use when setting up Config keeps the
	// same minimum permissions as the already created Config role. You must do
	// this so that the other Amazon Web Services service continues to run as expected.
	//
	// For example, if Control Tower has an IAM role that allows Config to read
	// Amazon Simple Storage Service (Amazon S3) objects, make sure that the same
	// permissions are granted within the IAM role you use when setting up Config.
	// Otherwise, it may interfere with how Control Tower operates. For more information
	// about IAM roles for Config, see Identity and Access Management for Config
	// (https://docs.aws.amazon.com/config/latest/developerguide/security-iam.html)
	// in the Config Developer Guide.
	RoleARN *string `locationName:"roleARN" type:"string"`
	// contains filtered or unexported fields
}

Records configuration changes to your specified resource types. For more information about the configuration recorder, see Managing the Configuration Recorder (https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html) in the Config Developer Guide.

func (ConfigurationRecorder) GoString added in v0.6.5

func (s ConfigurationRecorder) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigurationRecorder) SetName added in v1.5.0

SetName sets the Name field's value.

func (*ConfigurationRecorder) SetRecordingGroup added in v1.5.0

SetRecordingGroup sets the RecordingGroup field's value.

func (*ConfigurationRecorder) SetRecordingMode added in v1.48.4

SetRecordingMode sets the RecordingMode field's value.

func (*ConfigurationRecorder) SetRoleARN added in v1.5.0

SetRoleARN sets the RoleARN field's value.

func (ConfigurationRecorder) String added in v0.6.5

func (s ConfigurationRecorder) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigurationRecorder) Validate added in v1.1.21

func (s *ConfigurationRecorder) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfigurationRecorderStatus

type ConfigurationRecorderStatus struct {

	// The latest error code from when the recorder last failed.
	LastErrorCode *string `locationName:"lastErrorCode" type:"string"`

	// The latest error message from when the recorder last failed.
	LastErrorMessage *string `locationName:"lastErrorMessage" type:"string"`

	// The time the recorder was last started.
	LastStartTime *time.Time `locationName:"lastStartTime" type:"timestamp"`

	// The status of the latest recording event processed by the recorder.
	LastStatus *string `locationName:"lastStatus" type:"string" enum:"RecorderStatus"`

	// The time of the latest change in status of an recording event processed by
	// the recorder.
	LastStatusChangeTime *time.Time `locationName:"lastStatusChangeTime" type:"timestamp"`

	// The time the recorder was last stopped.
	LastStopTime *time.Time `locationName:"lastStopTime" type:"timestamp"`

	// The name of the configuration recorder.
	Name *string `locationName:"name" type:"string"`

	// Specifies whether or not the recorder is currently recording.
	Recording *bool `locationName:"recording" type:"boolean"`
	// contains filtered or unexported fields
}

The current status of the configuration recorder.

For a detailed status of recording events over time, add your Config events to CloudWatch metrics and use CloudWatch metrics.

func (ConfigurationRecorderStatus) GoString added in v0.6.5

func (s ConfigurationRecorderStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConfigurationRecorderStatus) SetLastErrorCode added in v1.5.0

SetLastErrorCode sets the LastErrorCode field's value.

func (*ConfigurationRecorderStatus) SetLastErrorMessage added in v1.5.0

SetLastErrorMessage sets the LastErrorMessage field's value.

func (*ConfigurationRecorderStatus) SetLastStartTime added in v1.5.0

SetLastStartTime sets the LastStartTime field's value.

func (*ConfigurationRecorderStatus) SetLastStatus added in v1.5.0

SetLastStatus sets the LastStatus field's value.

func (*ConfigurationRecorderStatus) SetLastStatusChangeTime added in v1.5.0

func (s *ConfigurationRecorderStatus) SetLastStatusChangeTime(v time.Time) *ConfigurationRecorderStatus

SetLastStatusChangeTime sets the LastStatusChangeTime field's value.

func (*ConfigurationRecorderStatus) SetLastStopTime added in v1.5.0

SetLastStopTime sets the LastStopTime field's value.

func (*ConfigurationRecorderStatus) SetName added in v1.5.0

SetName sets the Name field's value.

func (*ConfigurationRecorderStatus) SetRecording added in v1.5.0

SetRecording sets the Recording field's value.

func (ConfigurationRecorderStatus) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackComplianceFilters added in v1.25.38

type ConformancePackComplianceFilters struct {

	// Filters the results by compliance.
	//
	// The allowed values are COMPLIANT and NON_COMPLIANT. INSUFFICIENT_DATA is
	// not supported.
	ComplianceType *string `type:"string" enum:"ConformancePackComplianceType"`

	// Filters the results by Config rule names.
	ConfigRuleNames []*string `type:"list"`
	// contains filtered or unexported fields
}

Filters the conformance pack by compliance types and Config rule names.

func (ConformancePackComplianceFilters) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackComplianceFilters) SetComplianceType added in v1.25.38

SetComplianceType sets the ComplianceType field's value.

func (*ConformancePackComplianceFilters) SetConfigRuleNames added in v1.25.38

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (ConformancePackComplianceFilters) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackComplianceScore added in v1.44.64

type ConformancePackComplianceScore struct {

	// The name of the conformance pack.
	ConformancePackName *string `min:"1" type:"string"`

	// The time that the conformance pack compliance score was last updated.
	LastUpdatedTime *time.Time `type:"timestamp"`

	// Compliance score for the conformance pack. Conformance packs with no evaluation
	// results will have a compliance score of INSUFFICIENT_DATA.
	Score *string `type:"string"`
	// contains filtered or unexported fields
}

A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs.

func (ConformancePackComplianceScore) GoString added in v1.44.64

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackComplianceScore) SetConformancePackName added in v1.44.64

SetConformancePackName sets the ConformancePackName field's value.

func (*ConformancePackComplianceScore) SetLastUpdatedTime added in v1.44.64

SetLastUpdatedTime sets the LastUpdatedTime field's value.

func (*ConformancePackComplianceScore) SetScore added in v1.44.64

SetScore sets the Score field's value.

func (ConformancePackComplianceScore) String added in v1.44.64

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackComplianceScoresFilters added in v1.44.64

type ConformancePackComplianceScoresFilters struct {

	// The names of the conformance packs whose compliance scores you want to include
	// in the conformance pack compliance score result set. You can include up to
	// 25 conformance packs in the ConformancePackNames array of strings, each with
	// a character limit of 256 characters for the conformance pack name.
	//
	// ConformancePackNames is a required field
	ConformancePackNames []*string `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

A list of filters to apply to the conformance pack compliance score result set.

func (ConformancePackComplianceScoresFilters) GoString added in v1.44.64

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackComplianceScoresFilters) SetConformancePackNames added in v1.44.64

SetConformancePackNames sets the ConformancePackNames field's value.

func (ConformancePackComplianceScoresFilters) String added in v1.44.64

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackComplianceScoresFilters) Validate added in v1.44.64

Validate inspects the fields of the type to determine if they are valid.

type ConformancePackComplianceSummary added in v1.25.38

type ConformancePackComplianceSummary struct {

	// The status of the conformance pack.
	//
	// ConformancePackComplianceStatus is a required field
	ConformancePackComplianceStatus *string `type:"string" required:"true" enum:"ConformancePackComplianceType"`

	// The name of the conformance pack name.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Summary includes the name and status of the conformance pack.

func (ConformancePackComplianceSummary) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackComplianceSummary) SetConformancePackComplianceStatus added in v1.25.38

func (s *ConformancePackComplianceSummary) SetConformancePackComplianceStatus(v string) *ConformancePackComplianceSummary

SetConformancePackComplianceStatus sets the ConformancePackComplianceStatus field's value.

func (*ConformancePackComplianceSummary) SetConformancePackName added in v1.25.38

SetConformancePackName sets the ConformancePackName field's value.

func (ConformancePackComplianceSummary) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackDetail added in v1.25.38

type ConformancePackDetail struct {

	// Amazon Resource Name (ARN) of the conformance pack.
	//
	// ConformancePackArn is a required field
	ConformancePackArn *string `min:"1" type:"string" required:"true"`

	// ID of the conformance pack.
	//
	// ConformancePackId is a required field
	ConformancePackId *string `min:"1" type:"string" required:"true"`

	// A list of ConformancePackInputParameter objects.
	ConformancePackInputParameters []*ConformancePackInputParameter `type:"list"`

	// Name of the conformance pack.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// The Amazon Web Services service that created the conformance pack.
	CreatedBy *string `min:"1" type:"string"`

	// The name of the Amazon S3 bucket where Config stores conformance pack templates.
	//
	// This field is optional.
	DeliveryS3Bucket *string `type:"string"`

	// The prefix for the Amazon S3 bucket.
	//
	// This field is optional.
	DeliveryS3KeyPrefix *string `type:"string"`

	// The last time a conformation pack update was requested.
	LastUpdateRequestedTime *time.Time `type:"timestamp"`

	// An object that contains the name or Amazon Resource Name (ARN) of the Amazon
	// Web Services Systems Manager document (SSM document) and the version of the
	// SSM document that is used to create a conformance pack.
	TemplateSSMDocumentDetails *TemplateSSMDocumentDetails `type:"structure"`
	// contains filtered or unexported fields
}

Returns details of a conformance pack. A conformance pack is a collection of Config rules and remediation actions that can be easily deployed in an account and a region.

func (ConformancePackDetail) GoString added in v1.25.38

func (s ConformancePackDetail) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackDetail) SetConformancePackArn added in v1.25.38

func (s *ConformancePackDetail) SetConformancePackArn(v string) *ConformancePackDetail

SetConformancePackArn sets the ConformancePackArn field's value.

func (*ConformancePackDetail) SetConformancePackId added in v1.25.38

func (s *ConformancePackDetail) SetConformancePackId(v string) *ConformancePackDetail

SetConformancePackId sets the ConformancePackId field's value.

func (*ConformancePackDetail) SetConformancePackInputParameters added in v1.25.38

func (s *ConformancePackDetail) SetConformancePackInputParameters(v []*ConformancePackInputParameter) *ConformancePackDetail

SetConformancePackInputParameters sets the ConformancePackInputParameters field's value.

func (*ConformancePackDetail) SetConformancePackName added in v1.25.38

func (s *ConformancePackDetail) SetConformancePackName(v string) *ConformancePackDetail

SetConformancePackName sets the ConformancePackName field's value.

func (*ConformancePackDetail) SetCreatedBy added in v1.25.38

SetCreatedBy sets the CreatedBy field's value.

func (*ConformancePackDetail) SetDeliveryS3Bucket added in v1.25.38

func (s *ConformancePackDetail) SetDeliveryS3Bucket(v string) *ConformancePackDetail

SetDeliveryS3Bucket sets the DeliveryS3Bucket field's value.

func (*ConformancePackDetail) SetDeliveryS3KeyPrefix added in v1.25.38

func (s *ConformancePackDetail) SetDeliveryS3KeyPrefix(v string) *ConformancePackDetail

SetDeliveryS3KeyPrefix sets the DeliveryS3KeyPrefix field's value.

func (*ConformancePackDetail) SetLastUpdateRequestedTime added in v1.25.38

func (s *ConformancePackDetail) SetLastUpdateRequestedTime(v time.Time) *ConformancePackDetail

SetLastUpdateRequestedTime sets the LastUpdateRequestedTime field's value.

func (*ConformancePackDetail) SetTemplateSSMDocumentDetails added in v1.44.84

func (s *ConformancePackDetail) SetTemplateSSMDocumentDetails(v *TemplateSSMDocumentDetails) *ConformancePackDetail

SetTemplateSSMDocumentDetails sets the TemplateSSMDocumentDetails field's value.

func (ConformancePackDetail) String added in v1.25.38

func (s ConformancePackDetail) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackEvaluationFilters added in v1.25.38

type ConformancePackEvaluationFilters struct {

	// Filters the results by compliance.
	//
	// The allowed values are COMPLIANT and NON_COMPLIANT. INSUFFICIENT_DATA is
	// not supported.
	ComplianceType *string `type:"string" enum:"ConformancePackComplianceType"`

	// Filters the results by Config rule names.
	ConfigRuleNames []*string `type:"list"`

	// Filters the results by resource IDs.
	//
	// This is valid only when you provide resource type. If there is no resource
	// type, you will see an error.
	ResourceIds []*string `type:"list"`

	// Filters the results by the resource type (for example, "AWS::EC2::Instance").
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Filters a conformance pack by Config rule names, compliance types, Amazon Web Services resource types, and resource IDs.

func (ConformancePackEvaluationFilters) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackEvaluationFilters) SetComplianceType added in v1.25.38

SetComplianceType sets the ComplianceType field's value.

func (*ConformancePackEvaluationFilters) SetConfigRuleNames added in v1.25.38

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (*ConformancePackEvaluationFilters) SetResourceIds added in v1.25.38

SetResourceIds sets the ResourceIds field's value.

func (*ConformancePackEvaluationFilters) SetResourceType added in v1.25.38

SetResourceType sets the ResourceType field's value.

func (ConformancePackEvaluationFilters) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackEvaluationFilters) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type ConformancePackEvaluationResult added in v1.25.38

type ConformancePackEvaluationResult struct {

	// Supplementary information about how the evaluation determined the compliance.
	Annotation *string `type:"string"`

	// The compliance type. The allowed values are COMPLIANT and NON_COMPLIANT.
	// INSUFFICIENT_DATA is not supported.
	//
	// ComplianceType is a required field
	ComplianceType *string `type:"string" required:"true" enum:"ConformancePackComplianceType"`

	// The time when Config rule evaluated Amazon Web Services resource.
	//
	// ConfigRuleInvokedTime is a required field
	ConfigRuleInvokedTime *time.Time `type:"timestamp" required:"true"`

	// Uniquely identifies an evaluation result.
	//
	// EvaluationResultIdentifier is a required field
	EvaluationResultIdentifier *EvaluationResultIdentifier `type:"structure" required:"true"`

	// The time when Config recorded the evaluation result.
	//
	// ResultRecordedTime is a required field
	ResultRecordedTime *time.Time `type:"timestamp" required:"true"`
	// contains filtered or unexported fields
}

The details of a conformance pack evaluation. Provides Config rule and Amazon Web Services resource type that was evaluated, the compliance of the conformance pack, related time stamps, and supplementary information.

func (ConformancePackEvaluationResult) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackEvaluationResult) SetAnnotation added in v1.25.38

SetAnnotation sets the Annotation field's value.

func (*ConformancePackEvaluationResult) SetComplianceType added in v1.25.38

SetComplianceType sets the ComplianceType field's value.

func (*ConformancePackEvaluationResult) SetConfigRuleInvokedTime added in v1.25.38

SetConfigRuleInvokedTime sets the ConfigRuleInvokedTime field's value.

func (*ConformancePackEvaluationResult) SetEvaluationResultIdentifier added in v1.25.38

SetEvaluationResultIdentifier sets the EvaluationResultIdentifier field's value.

func (*ConformancePackEvaluationResult) SetResultRecordedTime added in v1.25.38

SetResultRecordedTime sets the ResultRecordedTime field's value.

func (ConformancePackEvaluationResult) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackInputParameter added in v1.25.38

type ConformancePackInputParameter struct {

	// One part of a key-value pair.
	//
	// ParameterName is a required field
	ParameterName *string `type:"string" required:"true"`

	// Another part of the key-value pair.
	//
	// ParameterValue is a required field
	ParameterValue *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters.

func (ConformancePackInputParameter) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackInputParameter) SetParameterName added in v1.25.38

SetParameterName sets the ParameterName field's value.

func (*ConformancePackInputParameter) SetParameterValue added in v1.25.38

SetParameterValue sets the ParameterValue field's value.

func (ConformancePackInputParameter) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackInputParameter) Validate added in v1.25.38

func (s *ConformancePackInputParameter) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConformancePackRuleCompliance added in v1.25.38

type ConformancePackRuleCompliance struct {

	// Compliance of the Config rule.
	ComplianceType *string `type:"string" enum:"ConformancePackComplianceType"`

	// Name of the Config rule.
	ConfigRuleName *string `min:"1" type:"string"`

	// Controls for the conformance pack. A control is a process to prevent or detect
	// problems while meeting objectives. A control can align with a specific compliance
	// regime or map to internal controls defined by an organization.
	Controls []*string `type:"list"`
	// contains filtered or unexported fields
}

Compliance information of one or more Config rules within a conformance pack. You can filter using Config rule names and compliance types.

func (ConformancePackRuleCompliance) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackRuleCompliance) SetComplianceType added in v1.25.38

SetComplianceType sets the ComplianceType field's value.

func (*ConformancePackRuleCompliance) SetConfigRuleName added in v1.25.38

SetConfigRuleName sets the ConfigRuleName field's value.

func (*ConformancePackRuleCompliance) SetControls added in v1.38.9

SetControls sets the Controls field's value.

func (ConformancePackRuleCompliance) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackStatusDetail added in v1.25.38

type ConformancePackStatusDetail struct {

	// Amazon Resource Name (ARN) of comformance pack.
	//
	// ConformancePackArn is a required field
	ConformancePackArn *string `min:"1" type:"string" required:"true"`

	// ID of the conformance pack.
	//
	// ConformancePackId is a required field
	ConformancePackId *string `min:"1" type:"string" required:"true"`

	// Name of the conformance pack.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// Indicates deployment status of conformance pack.
	//
	// Config sets the state of the conformance pack to:
	//
	//    * CREATE_IN_PROGRESS when a conformance pack creation is in progress for
	//    an account.
	//
	//    * CREATE_COMPLETE when a conformance pack has been successfully created
	//    in your account.
	//
	//    * CREATE_FAILED when a conformance pack creation failed in your account.
	//
	//    * DELETE_IN_PROGRESS when a conformance pack deletion is in progress.
	//
	//    * DELETE_FAILED when a conformance pack deletion failed in your account.
	//
	// ConformancePackState is a required field
	ConformancePackState *string `type:"string" required:"true" enum:"ConformancePackState"`

	// The reason of conformance pack creation failure.
	ConformancePackStatusReason *string `type:"string"`

	// Last time when conformation pack creation and update was successful.
	LastUpdateCompletedTime *time.Time `type:"timestamp"`

	// Last time when conformation pack creation and update was requested.
	//
	// LastUpdateRequestedTime is a required field
	LastUpdateRequestedTime *time.Time `type:"timestamp" required:"true"`

	// Amazon Resource Name (ARN) of CloudFormation stack.
	//
	// StackArn is a required field
	StackArn *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Status details of a conformance pack.

func (ConformancePackStatusDetail) GoString added in v1.25.38

func (s ConformancePackStatusDetail) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackStatusDetail) SetConformancePackArn added in v1.25.38

func (s *ConformancePackStatusDetail) SetConformancePackArn(v string) *ConformancePackStatusDetail

SetConformancePackArn sets the ConformancePackArn field's value.

func (*ConformancePackStatusDetail) SetConformancePackId added in v1.25.38

SetConformancePackId sets the ConformancePackId field's value.

func (*ConformancePackStatusDetail) SetConformancePackName added in v1.25.38

func (s *ConformancePackStatusDetail) SetConformancePackName(v string) *ConformancePackStatusDetail

SetConformancePackName sets the ConformancePackName field's value.

func (*ConformancePackStatusDetail) SetConformancePackState added in v1.25.38

func (s *ConformancePackStatusDetail) SetConformancePackState(v string) *ConformancePackStatusDetail

SetConformancePackState sets the ConformancePackState field's value.

func (*ConformancePackStatusDetail) SetConformancePackStatusReason added in v1.25.38

func (s *ConformancePackStatusDetail) SetConformancePackStatusReason(v string) *ConformancePackStatusDetail

SetConformancePackStatusReason sets the ConformancePackStatusReason field's value.

func (*ConformancePackStatusDetail) SetLastUpdateCompletedTime added in v1.25.38

func (s *ConformancePackStatusDetail) SetLastUpdateCompletedTime(v time.Time) *ConformancePackStatusDetail

SetLastUpdateCompletedTime sets the LastUpdateCompletedTime field's value.

func (*ConformancePackStatusDetail) SetLastUpdateRequestedTime added in v1.25.38

func (s *ConformancePackStatusDetail) SetLastUpdateRequestedTime(v time.Time) *ConformancePackStatusDetail

SetLastUpdateRequestedTime sets the LastUpdateRequestedTime field's value.

func (*ConformancePackStatusDetail) SetStackArn added in v1.25.38

SetStackArn sets the StackArn field's value.

func (ConformancePackStatusDetail) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConformancePackTemplateValidationException added in v1.28.0

type ConformancePackTemplateValidationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a template that is not valid or supported.

func (*ConformancePackTemplateValidationException) Code added in v1.28.0

Code returns the exception type name.

func (*ConformancePackTemplateValidationException) Error added in v1.28.0

func (ConformancePackTemplateValidationException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConformancePackTemplateValidationException) Message added in v1.28.0

Message returns the exception's message.

func (*ConformancePackTemplateValidationException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ConformancePackTemplateValidationException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*ConformancePackTemplateValidationException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (ConformancePackTemplateValidationException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CustomPolicyDetails added in v1.43.25

type CustomPolicyDetails struct {

	// The boolean expression for enabling debug logging for your Config Custom
	// Policy rule. The default value is false.
	EnableDebugLogDelivery *bool `type:"boolean"`

	// The runtime system for your Config Custom Policy rule. Guard is a policy-as-code
	// language that allows you to write policies that are enforced by Config Custom
	// Policy rules. For more information about Guard, see the Guard GitHub Repository
	// (https://github.com/aws-cloudformation/cloudformation-guard).
	//
	// PolicyRuntime is a required field
	PolicyRuntime *string `min:"1" type:"string" required:"true"`

	// The policy definition containing the logic for your Config Custom Policy
	// rule.
	//
	// PolicyText is a required field
	PolicyText *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

Provides the runtime system, policy definition, and whether debug logging enabled. You can specify the following CustomPolicyDetails parameter values only for Config Custom Policy rules.

func (CustomPolicyDetails) GoString added in v1.43.25

func (s CustomPolicyDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CustomPolicyDetails) SetEnableDebugLogDelivery added in v1.43.25

func (s *CustomPolicyDetails) SetEnableDebugLogDelivery(v bool) *CustomPolicyDetails

SetEnableDebugLogDelivery sets the EnableDebugLogDelivery field's value.

func (*CustomPolicyDetails) SetPolicyRuntime added in v1.43.25

func (s *CustomPolicyDetails) SetPolicyRuntime(v string) *CustomPolicyDetails

SetPolicyRuntime sets the PolicyRuntime field's value.

func (*CustomPolicyDetails) SetPolicyText added in v1.43.25

func (s *CustomPolicyDetails) SetPolicyText(v string) *CustomPolicyDetails

SetPolicyText sets the PolicyText field's value.

func (CustomPolicyDetails) String added in v1.43.25

func (s CustomPolicyDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CustomPolicyDetails) Validate added in v1.43.25

func (s *CustomPolicyDetails) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteAggregationAuthorizationInput added in v1.13.28

type DeleteAggregationAuthorizationInput struct {

	// The 12-digit account ID of the account authorized to aggregate data.
	//
	// AuthorizedAccountId is a required field
	AuthorizedAccountId *string `type:"string" required:"true"`

	// The region authorized to collect aggregated data.
	//
	// AuthorizedAwsRegion is a required field
	AuthorizedAwsRegion *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteAggregationAuthorizationInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteAggregationAuthorizationInput) SetAuthorizedAccountId added in v1.13.28

SetAuthorizedAccountId sets the AuthorizedAccountId field's value.

func (*DeleteAggregationAuthorizationInput) SetAuthorizedAwsRegion added in v1.13.28

SetAuthorizedAwsRegion sets the AuthorizedAwsRegion field's value.

func (DeleteAggregationAuthorizationInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteAggregationAuthorizationInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type DeleteAggregationAuthorizationOutput added in v1.13.28

type DeleteAggregationAuthorizationOutput struct {
	// contains filtered or unexported fields
}

func (DeleteAggregationAuthorizationOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteAggregationAuthorizationOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteConfigRuleInput added in v0.9.13

type DeleteConfigRuleInput struct {

	// The name of the Config rule that you want to delete.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteConfigRuleInput) GoString added in v0.9.13

func (s DeleteConfigRuleInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConfigRuleInput) SetConfigRuleName added in v1.5.0

func (s *DeleteConfigRuleInput) SetConfigRuleName(v string) *DeleteConfigRuleInput

SetConfigRuleName sets the ConfigRuleName field's value.

func (DeleteConfigRuleInput) String added in v0.9.13

func (s DeleteConfigRuleInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConfigRuleInput) Validate added in v1.1.21

func (s *DeleteConfigRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteConfigRuleOutput added in v0.9.13

type DeleteConfigRuleOutput struct {
	// contains filtered or unexported fields
}

func (DeleteConfigRuleOutput) GoString added in v0.9.13

func (s DeleteConfigRuleOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteConfigRuleOutput) String added in v0.9.13

func (s DeleteConfigRuleOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteConfigurationAggregatorInput added in v1.13.28

type DeleteConfigurationAggregatorInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteConfigurationAggregatorInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConfigurationAggregatorInput) SetConfigurationAggregatorName added in v1.13.28

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (DeleteConfigurationAggregatorInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConfigurationAggregatorInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type DeleteConfigurationAggregatorOutput added in v1.13.28

type DeleteConfigurationAggregatorOutput struct {
	// contains filtered or unexported fields
}

func (DeleteConfigurationAggregatorOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteConfigurationAggregatorOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteConfigurationRecorderInput added in v1.2.4

type DeleteConfigurationRecorderInput struct {

	// The name of the configuration recorder to be deleted. You can retrieve the
	// name of your configuration recorder by using the DescribeConfigurationRecorders
	// action.
	//
	// ConfigurationRecorderName is a required field
	ConfigurationRecorderName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The request object for the DeleteConfigurationRecorder action.

func (DeleteConfigurationRecorderInput) GoString added in v1.2.4

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConfigurationRecorderInput) SetConfigurationRecorderName added in v1.5.0

func (s *DeleteConfigurationRecorderInput) SetConfigurationRecorderName(v string) *DeleteConfigurationRecorderInput

SetConfigurationRecorderName sets the ConfigurationRecorderName field's value.

func (DeleteConfigurationRecorderInput) String added in v1.2.4

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConfigurationRecorderInput) Validate added in v1.2.4

Validate inspects the fields of the type to determine if they are valid.

type DeleteConfigurationRecorderOutput added in v1.2.4

type DeleteConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (DeleteConfigurationRecorderOutput) GoString added in v1.2.4

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteConfigurationRecorderOutput) String added in v1.2.4

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteConformancePackInput added in v1.25.38

type DeleteConformancePackInput struct {

	// Name of the conformance pack you want to delete.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteConformancePackInput) GoString added in v1.25.38

func (s DeleteConformancePackInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConformancePackInput) SetConformancePackName added in v1.25.38

func (s *DeleteConformancePackInput) SetConformancePackName(v string) *DeleteConformancePackInput

SetConformancePackName sets the ConformancePackName field's value.

func (DeleteConformancePackInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteConformancePackInput) Validate added in v1.25.38

func (s *DeleteConformancePackInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteConformancePackOutput added in v1.25.38

type DeleteConformancePackOutput struct {
	// contains filtered or unexported fields
}

func (DeleteConformancePackOutput) GoString added in v1.25.38

func (s DeleteConformancePackOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteConformancePackOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteDeliveryChannelInput

type DeleteDeliveryChannelInput struct {

	// The name of the delivery channel to delete.
	//
	// DeliveryChannelName is a required field
	DeliveryChannelName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the DeleteDeliveryChannel action. The action accepts the following data, in JSON format.

func (DeleteDeliveryChannelInput) GoString added in v0.6.5

func (s DeleteDeliveryChannelInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeliveryChannelInput) SetDeliveryChannelName added in v1.5.0

func (s *DeleteDeliveryChannelInput) SetDeliveryChannelName(v string) *DeleteDeliveryChannelInput

SetDeliveryChannelName sets the DeliveryChannelName field's value.

func (DeleteDeliveryChannelInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteDeliveryChannelInput) Validate added in v1.1.21

func (s *DeleteDeliveryChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDeliveryChannelOutput

type DeleteDeliveryChannelOutput struct {
	// contains filtered or unexported fields
}

func (DeleteDeliveryChannelOutput) GoString added in v0.6.5

func (s DeleteDeliveryChannelOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteDeliveryChannelOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteEvaluationResultsInput added in v1.2.7

type DeleteEvaluationResultsInput struct {

	// The name of the Config rule for which you want to delete the evaluation results.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteEvaluationResultsInput) GoString added in v1.2.7

func (s DeleteEvaluationResultsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteEvaluationResultsInput) SetConfigRuleName added in v1.5.0

SetConfigRuleName sets the ConfigRuleName field's value.

func (DeleteEvaluationResultsInput) String added in v1.2.7

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteEvaluationResultsInput) Validate added in v1.2.7

func (s *DeleteEvaluationResultsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteEvaluationResultsOutput added in v1.2.7

type DeleteEvaluationResultsOutput struct {
	// contains filtered or unexported fields
}

The output when you delete the evaluation results for the specified Config rule.

func (DeleteEvaluationResultsOutput) GoString added in v1.2.7

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteEvaluationResultsOutput) String added in v1.2.7

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteOrganizationConfigRuleInput added in v1.20.17

type DeleteOrganizationConfigRuleInput struct {

	// The name of organization Config rule that you want to delete.
	//
	// OrganizationConfigRuleName is a required field
	OrganizationConfigRuleName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteOrganizationConfigRuleInput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteOrganizationConfigRuleInput) SetOrganizationConfigRuleName added in v1.20.17

func (s *DeleteOrganizationConfigRuleInput) SetOrganizationConfigRuleName(v string) *DeleteOrganizationConfigRuleInput

SetOrganizationConfigRuleName sets the OrganizationConfigRuleName field's value.

func (DeleteOrganizationConfigRuleInput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteOrganizationConfigRuleInput) Validate added in v1.20.17

Validate inspects the fields of the type to determine if they are valid.

type DeleteOrganizationConfigRuleOutput added in v1.20.17

type DeleteOrganizationConfigRuleOutput struct {
	// contains filtered or unexported fields
}

func (DeleteOrganizationConfigRuleOutput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteOrganizationConfigRuleOutput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteOrganizationConformancePackInput added in v1.25.38

type DeleteOrganizationConformancePackInput struct {

	// The name of organization conformance pack that you want to delete.
	//
	// OrganizationConformancePackName is a required field
	OrganizationConformancePackName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteOrganizationConformancePackInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteOrganizationConformancePackInput) SetOrganizationConformancePackName added in v1.25.38

SetOrganizationConformancePackName sets the OrganizationConformancePackName field's value.

func (DeleteOrganizationConformancePackInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteOrganizationConformancePackInput) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type DeleteOrganizationConformancePackOutput added in v1.25.38

type DeleteOrganizationConformancePackOutput struct {
	// contains filtered or unexported fields
}

func (DeleteOrganizationConformancePackOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteOrganizationConformancePackOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeletePendingAggregationRequestInput added in v1.13.28

type DeletePendingAggregationRequestInput struct {

	// The 12-digit account ID of the account requesting to aggregate data.
	//
	// RequesterAccountId is a required field
	RequesterAccountId *string `type:"string" required:"true"`

	// The region requesting to aggregate data.
	//
	// RequesterAwsRegion is a required field
	RequesterAwsRegion *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeletePendingAggregationRequestInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeletePendingAggregationRequestInput) SetRequesterAccountId added in v1.13.28

SetRequesterAccountId sets the RequesterAccountId field's value.

func (*DeletePendingAggregationRequestInput) SetRequesterAwsRegion added in v1.13.28

SetRequesterAwsRegion sets the RequesterAwsRegion field's value.

func (DeletePendingAggregationRequestInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeletePendingAggregationRequestInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type DeletePendingAggregationRequestOutput added in v1.13.28

type DeletePendingAggregationRequestOutput struct {
	// contains filtered or unexported fields
}

func (DeletePendingAggregationRequestOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeletePendingAggregationRequestOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteRemediationConfigurationInput added in v1.18.2

type DeleteRemediationConfigurationInput struct {

	// The name of the Config rule for which you want to delete remediation configuration.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The type of a resource.
	ResourceType *string `type:"string"`
	// contains filtered or unexported fields
}

func (DeleteRemediationConfigurationInput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRemediationConfigurationInput) SetConfigRuleName added in v1.18.2

SetConfigRuleName sets the ConfigRuleName field's value.

func (*DeleteRemediationConfigurationInput) SetResourceType added in v1.18.2

SetResourceType sets the ResourceType field's value.

func (DeleteRemediationConfigurationInput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRemediationConfigurationInput) Validate added in v1.18.2

Validate inspects the fields of the type to determine if they are valid.

type DeleteRemediationConfigurationOutput added in v1.18.2

type DeleteRemediationConfigurationOutput struct {
	// contains filtered or unexported fields
}

func (DeleteRemediationConfigurationOutput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteRemediationConfigurationOutput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteRemediationExceptionsInput added in v1.23.16

type DeleteRemediationExceptionsInput struct {

	// The name of the Config rule for which you want to delete remediation exception
	// configuration.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// An exception list of resource exception keys to be processed with the current
	// request. Config adds exception for each resource key. For example, Config
	// adds 3 exceptions for 3 resource keys.
	//
	// ResourceKeys is a required field
	ResourceKeys []*RemediationExceptionResourceKey `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteRemediationExceptionsInput) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRemediationExceptionsInput) SetConfigRuleName added in v1.23.16

SetConfigRuleName sets the ConfigRuleName field's value.

func (*DeleteRemediationExceptionsInput) SetResourceKeys added in v1.23.16

SetResourceKeys sets the ResourceKeys field's value.

func (DeleteRemediationExceptionsInput) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRemediationExceptionsInput) Validate added in v1.23.16

Validate inspects the fields of the type to determine if they are valid.

type DeleteRemediationExceptionsOutput added in v1.23.16

type DeleteRemediationExceptionsOutput struct {

	// Returns a list of failed delete remediation exceptions batch objects. Each
	// object in the batch consists of a list of failed items and failure messages.
	FailedBatches []*FailedDeleteRemediationExceptionsBatch `type:"list"`
	// contains filtered or unexported fields
}

func (DeleteRemediationExceptionsOutput) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRemediationExceptionsOutput) SetFailedBatches added in v1.23.16

SetFailedBatches sets the FailedBatches field's value.

func (DeleteRemediationExceptionsOutput) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteResourceConfigInput added in v1.25.40

type DeleteResourceConfigInput struct {

	// Unique identifier of the resource.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`

	// The type of the resource.
	//
	// ResourceType is a required field
	ResourceType *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteResourceConfigInput) GoString added in v1.25.40

func (s DeleteResourceConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteResourceConfigInput) SetResourceId added in v1.25.40

SetResourceId sets the ResourceId field's value.

func (*DeleteResourceConfigInput) SetResourceType added in v1.25.40

SetResourceType sets the ResourceType field's value.

func (DeleteResourceConfigInput) String added in v1.25.40

func (s DeleteResourceConfigInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteResourceConfigInput) Validate added in v1.25.40

func (s *DeleteResourceConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteResourceConfigOutput added in v1.25.40

type DeleteResourceConfigOutput struct {
	// contains filtered or unexported fields
}

func (DeleteResourceConfigOutput) GoString added in v1.25.40

func (s DeleteResourceConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteResourceConfigOutput) String added in v1.25.40

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteRetentionConfigurationInput added in v1.13.56

type DeleteRetentionConfigurationInput struct {

	// The name of the retention configuration to delete.
	//
	// RetentionConfigurationName is a required field
	RetentionConfigurationName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteRetentionConfigurationInput) GoString added in v1.13.56

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRetentionConfigurationInput) SetRetentionConfigurationName added in v1.13.56

func (s *DeleteRetentionConfigurationInput) SetRetentionConfigurationName(v string) *DeleteRetentionConfigurationInput

SetRetentionConfigurationName sets the RetentionConfigurationName field's value.

func (DeleteRetentionConfigurationInput) String added in v1.13.56

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteRetentionConfigurationInput) Validate added in v1.13.56

Validate inspects the fields of the type to determine if they are valid.

type DeleteRetentionConfigurationOutput added in v1.13.56

type DeleteRetentionConfigurationOutput struct {
	// contains filtered or unexported fields
}

func (DeleteRetentionConfigurationOutput) GoString added in v1.13.56

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteRetentionConfigurationOutput) String added in v1.13.56

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteStoredQueryInput added in v1.36.13

type DeleteStoredQueryInput struct {

	// The name of the query that you want to delete.
	//
	// QueryName is a required field
	QueryName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (DeleteStoredQueryInput) GoString added in v1.36.13

func (s DeleteStoredQueryInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteStoredQueryInput) SetQueryName added in v1.36.13

SetQueryName sets the QueryName field's value.

func (DeleteStoredQueryInput) String added in v1.36.13

func (s DeleteStoredQueryInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteStoredQueryInput) Validate added in v1.36.13

func (s *DeleteStoredQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteStoredQueryOutput added in v1.36.13

type DeleteStoredQueryOutput struct {
	// contains filtered or unexported fields
}

func (DeleteStoredQueryOutput) GoString added in v1.36.13

func (s DeleteStoredQueryOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteStoredQueryOutput) String added in v1.36.13

func (s DeleteStoredQueryOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeliverConfigSnapshotInput

type DeliverConfigSnapshotInput struct {

	// The name of the delivery channel through which the snapshot is delivered.
	//
	// DeliveryChannelName is a required field
	DeliveryChannelName *string `locationName:"deliveryChannelName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the DeliverConfigSnapshot action.

func (DeliverConfigSnapshotInput) GoString added in v0.6.5

func (s DeliverConfigSnapshotInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeliverConfigSnapshotInput) SetDeliveryChannelName added in v1.5.0

func (s *DeliverConfigSnapshotInput) SetDeliveryChannelName(v string) *DeliverConfigSnapshotInput

SetDeliveryChannelName sets the DeliveryChannelName field's value.

func (DeliverConfigSnapshotInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeliverConfigSnapshotInput) Validate added in v1.1.21

func (s *DeliverConfigSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeliverConfigSnapshotOutput

type DeliverConfigSnapshotOutput struct {

	// The ID of the snapshot that is being created.
	ConfigSnapshotId *string `locationName:"configSnapshotId" type:"string"`
	// contains filtered or unexported fields
}

The output for the DeliverConfigSnapshot action, in JSON format.

func (DeliverConfigSnapshotOutput) GoString added in v0.6.5

func (s DeliverConfigSnapshotOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeliverConfigSnapshotOutput) SetConfigSnapshotId added in v1.5.0

SetConfigSnapshotId sets the ConfigSnapshotId field's value.

func (DeliverConfigSnapshotOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeliveryChannel

type DeliveryChannel struct {

	// The options for how often Config delivers configuration snapshots to the
	// Amazon S3 bucket.
	ConfigSnapshotDeliveryProperties *ConfigSnapshotDeliveryProperties `locationName:"configSnapshotDeliveryProperties" type:"structure"`

	// The name of the delivery channel. By default, Config assigns the name "default"
	// when creating the delivery channel. To change the delivery channel name,
	// you must use the DeleteDeliveryChannel action to delete your current delivery
	// channel, and then you must use the PutDeliveryChannel command to create a
	// delivery channel that has the desired name.
	Name *string `locationName:"name" min:"1" type:"string"`

	// The name of the Amazon S3 bucket to which Config delivers configuration snapshots
	// and configuration history files.
	//
	// If you specify a bucket that belongs to another Amazon Web Services account,
	// that bucket must have policies that grant access permissions to Config. For
	// more information, see Permissions for the Amazon S3 Bucket (https://docs.aws.amazon.com/config/latest/developerguide/s3-bucket-policy.html)
	// in the Config Developer Guide.
	S3BucketName *string `locationName:"s3BucketName" type:"string"`

	// The prefix for the specified Amazon S3 bucket.
	S3KeyPrefix *string `locationName:"s3KeyPrefix" type:"string"`

	// The Amazon Resource Name (ARN) of the Key Management Service (KMS ) KMS key
	// (KMS key) used to encrypt objects delivered by Config. Must belong to the
	// same Region as the destination S3 bucket.
	S3KmsKeyArn *string `locationName:"s3KmsKeyArn" type:"string"`

	// The Amazon Resource Name (ARN) of the Amazon SNS topic to which Config sends
	// notifications about configuration changes.
	//
	// If you choose a topic from another account, the topic must have policies
	// that grant access permissions to Config. For more information, see Permissions
	// for the Amazon SNS Topic (https://docs.aws.amazon.com/config/latest/developerguide/sns-topic-policy.html)
	// in the Config Developer Guide.
	SnsTopicARN *string `locationName:"snsTopicARN" type:"string"`
	// contains filtered or unexported fields
}

The channel through which Config delivers notifications and updated configuration states.

func (DeliveryChannel) GoString added in v0.6.5

func (s DeliveryChannel) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeliveryChannel) SetConfigSnapshotDeliveryProperties added in v1.5.0

func (s *DeliveryChannel) SetConfigSnapshotDeliveryProperties(v *ConfigSnapshotDeliveryProperties) *DeliveryChannel

SetConfigSnapshotDeliveryProperties sets the ConfigSnapshotDeliveryProperties field's value.

func (*DeliveryChannel) SetName added in v1.5.0

func (s *DeliveryChannel) SetName(v string) *DeliveryChannel

SetName sets the Name field's value.

func (*DeliveryChannel) SetS3BucketName added in v1.5.0

func (s *DeliveryChannel) SetS3BucketName(v string) *DeliveryChannel

SetS3BucketName sets the S3BucketName field's value.

func (*DeliveryChannel) SetS3KeyPrefix added in v1.5.0

func (s *DeliveryChannel) SetS3KeyPrefix(v string) *DeliveryChannel

SetS3KeyPrefix sets the S3KeyPrefix field's value.

func (*DeliveryChannel) SetS3KmsKeyArn added in v1.37.11

func (s *DeliveryChannel) SetS3KmsKeyArn(v string) *DeliveryChannel

SetS3KmsKeyArn sets the S3KmsKeyArn field's value.

func (*DeliveryChannel) SetSnsTopicARN added in v1.5.0

func (s *DeliveryChannel) SetSnsTopicARN(v string) *DeliveryChannel

SetSnsTopicARN sets the SnsTopicARN field's value.

func (DeliveryChannel) String added in v0.6.5

func (s DeliveryChannel) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeliveryChannel) Validate added in v1.1.21

func (s *DeliveryChannel) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeliveryChannelStatus

type DeliveryChannelStatus struct {

	// A list that contains the status of the delivery of the configuration history
	// to the specified Amazon S3 bucket.
	ConfigHistoryDeliveryInfo *ConfigExportDeliveryInfo `locationName:"configHistoryDeliveryInfo" type:"structure"`

	// A list containing the status of the delivery of the snapshot to the specified
	// Amazon S3 bucket.
	ConfigSnapshotDeliveryInfo *ConfigExportDeliveryInfo `locationName:"configSnapshotDeliveryInfo" type:"structure"`

	// A list containing the status of the delivery of the configuration stream
	// notification to the specified Amazon SNS topic.
	ConfigStreamDeliveryInfo *ConfigStreamDeliveryInfo `locationName:"configStreamDeliveryInfo" type:"structure"`

	// The name of the delivery channel.
	Name *string `locationName:"name" type:"string"`
	// contains filtered or unexported fields
}

The status of a specified delivery channel.

Valid values: Success | Failure

func (DeliveryChannelStatus) GoString added in v0.6.5

func (s DeliveryChannelStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeliveryChannelStatus) SetConfigHistoryDeliveryInfo added in v1.5.0

func (s *DeliveryChannelStatus) SetConfigHistoryDeliveryInfo(v *ConfigExportDeliveryInfo) *DeliveryChannelStatus

SetConfigHistoryDeliveryInfo sets the ConfigHistoryDeliveryInfo field's value.

func (*DeliveryChannelStatus) SetConfigSnapshotDeliveryInfo added in v1.5.0

func (s *DeliveryChannelStatus) SetConfigSnapshotDeliveryInfo(v *ConfigExportDeliveryInfo) *DeliveryChannelStatus

SetConfigSnapshotDeliveryInfo sets the ConfigSnapshotDeliveryInfo field's value.

func (*DeliveryChannelStatus) SetConfigStreamDeliveryInfo added in v1.5.0

func (s *DeliveryChannelStatus) SetConfigStreamDeliveryInfo(v *ConfigStreamDeliveryInfo) *DeliveryChannelStatus

SetConfigStreamDeliveryInfo sets the ConfigStreamDeliveryInfo field's value.

func (*DeliveryChannelStatus) SetName added in v1.5.0

SetName sets the Name field's value.

func (DeliveryChannelStatus) String added in v0.6.5

func (s DeliveryChannelStatus) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeAggregateComplianceByConfigRulesInput added in v1.13.28

type DescribeAggregateComplianceByConfigRulesInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// Filters the results by ConfigRuleComplianceFilters object.
	Filters *ConfigRuleComplianceFilters `type:"structure"`

	// The maximum number of evaluation results returned on each page. The default
	// is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeAggregateComplianceByConfigRulesInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregateComplianceByConfigRulesInput) SetConfigurationAggregatorName added in v1.13.28

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*DescribeAggregateComplianceByConfigRulesInput) SetFilters added in v1.13.28

SetFilters sets the Filters field's value.

func (*DescribeAggregateComplianceByConfigRulesInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*DescribeAggregateComplianceByConfigRulesInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeAggregateComplianceByConfigRulesInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregateComplianceByConfigRulesInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type DescribeAggregateComplianceByConfigRulesOutput added in v1.13.28

type DescribeAggregateComplianceByConfigRulesOutput struct {

	// Returns a list of AggregateComplianceByConfigRule object.
	AggregateComplianceByConfigRules []*AggregateComplianceByConfigRule `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeAggregateComplianceByConfigRulesOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregateComplianceByConfigRulesOutput) SetAggregateComplianceByConfigRules added in v1.13.28

SetAggregateComplianceByConfigRules sets the AggregateComplianceByConfigRules field's value.

func (*DescribeAggregateComplianceByConfigRulesOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeAggregateComplianceByConfigRulesOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeAggregateComplianceByConformancePacksInput added in v1.38.9

type DescribeAggregateComplianceByConformancePacksInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// Filters the result by AggregateConformancePackComplianceFilters object.
	Filters *AggregateConformancePackComplianceFilters `type:"structure"`

	// The maximum number of conformance packs compliance details returned on each
	// page. The default is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeAggregateComplianceByConformancePacksInput) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregateComplianceByConformancePacksInput) SetConfigurationAggregatorName added in v1.38.9

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*DescribeAggregateComplianceByConformancePacksInput) SetFilters added in v1.38.9

SetFilters sets the Filters field's value.

func (*DescribeAggregateComplianceByConformancePacksInput) SetLimit added in v1.38.9

SetLimit sets the Limit field's value.

func (*DescribeAggregateComplianceByConformancePacksInput) SetNextToken added in v1.38.9

SetNextToken sets the NextToken field's value.

func (DescribeAggregateComplianceByConformancePacksInput) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregateComplianceByConformancePacksInput) Validate added in v1.38.9

Validate inspects the fields of the type to determine if they are valid.

type DescribeAggregateComplianceByConformancePacksOutput added in v1.38.9

type DescribeAggregateComplianceByConformancePacksOutput struct {

	// Returns the AggregateComplianceByConformancePack object.
	AggregateComplianceByConformancePacks []*AggregateComplianceByConformancePack `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeAggregateComplianceByConformancePacksOutput) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregateComplianceByConformancePacksOutput) SetAggregateComplianceByConformancePacks added in v1.38.9

SetAggregateComplianceByConformancePacks sets the AggregateComplianceByConformancePacks field's value.

func (*DescribeAggregateComplianceByConformancePacksOutput) SetNextToken added in v1.38.9

SetNextToken sets the NextToken field's value.

func (DescribeAggregateComplianceByConformancePacksOutput) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeAggregationAuthorizationsInput added in v1.13.28

type DescribeAggregationAuthorizationsInput struct {

	// The maximum number of AggregationAuthorizations returned on each page. The
	// default is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeAggregationAuthorizationsInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregationAuthorizationsInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*DescribeAggregationAuthorizationsInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeAggregationAuthorizationsInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeAggregationAuthorizationsOutput added in v1.13.28

type DescribeAggregationAuthorizationsOutput struct {

	// Returns a list of authorizations granted to various aggregator accounts and
	// regions.
	AggregationAuthorizations []*AggregationAuthorization `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeAggregationAuthorizationsOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeAggregationAuthorizationsOutput) SetAggregationAuthorizations added in v1.13.28

SetAggregationAuthorizations sets the AggregationAuthorizations field's value.

func (*DescribeAggregationAuthorizationsOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeAggregationAuthorizationsOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeComplianceByConfigRuleInput added in v0.9.13

type DescribeComplianceByConfigRuleInput struct {

	// Filters the results by compliance.
	ComplianceTypes []*string `type:"list" enum:"ComplianceType"`

	// Specify one or more Config rule names to filter the results by rule.
	ConfigRuleNames []*string `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByConfigRuleInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeComplianceByConfigRuleInput) SetComplianceTypes added in v1.5.0

SetComplianceTypes sets the ComplianceTypes field's value.

func (*DescribeComplianceByConfigRuleInput) SetConfigRuleNames added in v1.5.0

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (*DescribeComplianceByConfigRuleInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (DescribeComplianceByConfigRuleInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeComplianceByConfigRuleOutput added in v0.9.13

type DescribeComplianceByConfigRuleOutput struct {

	// Indicates whether each of the specified Config rules is compliant.
	ComplianceByConfigRules []*ComplianceByConfigRule `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByConfigRuleOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeComplianceByConfigRuleOutput) SetComplianceByConfigRules added in v1.5.0

SetComplianceByConfigRules sets the ComplianceByConfigRules field's value.

func (*DescribeComplianceByConfigRuleOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (DescribeComplianceByConfigRuleOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeComplianceByResourceInput added in v0.9.13

type DescribeComplianceByResourceInput struct {

	// Filters the results by compliance.
	ComplianceTypes []*string `type:"list" enum:"ComplianceType"`

	// The maximum number of evaluation results returned on each page. The default
	// is 10. You cannot specify a number greater than 100. If you specify 0, Config
	// uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The ID of the Amazon Web Services resource for which you want compliance
	// information. You can specify only one resource ID. If you specify a resource
	// ID, you must also specify a type for ResourceType.
	ResourceId *string `min:"1" type:"string"`

	// The types of Amazon Web Services resources for which you want compliance
	// information (for example, AWS::EC2::Instance). For this action, you can specify
	// that the resource type is an Amazon Web Services account by specifying AWS::::Account.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByResourceInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeComplianceByResourceInput) SetComplianceTypes added in v1.5.0

SetComplianceTypes sets the ComplianceTypes field's value.

func (*DescribeComplianceByResourceInput) SetLimit added in v1.5.0

SetLimit sets the Limit field's value.

func (*DescribeComplianceByResourceInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*DescribeComplianceByResourceInput) SetResourceId added in v1.5.0

SetResourceId sets the ResourceId field's value.

func (*DescribeComplianceByResourceInput) SetResourceType added in v1.5.0

SetResourceType sets the ResourceType field's value.

func (DescribeComplianceByResourceInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeComplianceByResourceInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type DescribeComplianceByResourceOutput added in v0.9.13

type DescribeComplianceByResourceOutput struct {

	// Indicates whether the specified Amazon Web Services resource complies with
	// all of the Config rules that evaluate it.
	ComplianceByResources []*ComplianceByResource `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeComplianceByResourceOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeComplianceByResourceOutput) SetComplianceByResources added in v1.5.0

SetComplianceByResources sets the ComplianceByResources field's value.

func (*DescribeComplianceByResourceOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (DescribeComplianceByResourceOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigRuleEvaluationStatusInput added in v0.9.13

type DescribeConfigRuleEvaluationStatusInput struct {

	// The name of the Config managed rules for which you want status information.
	// If you do not specify any names, Config returns status information for all
	// Config managed rules that you use.
	ConfigRuleNames []*string `type:"list"`

	// The number of rule evaluation results that you want returned.
	//
	// This parameter is required if the rule limit for your account is more than
	// the default of 1000 rules.
	//
	// For information about requesting a rule limit increase, see Config Limits
	// (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_config)
	// in the Amazon Web Services General Reference Guide.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigRuleEvaluationStatusInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigRuleEvaluationStatusInput) SetConfigRuleNames added in v1.5.0

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (*DescribeConfigRuleEvaluationStatusInput) SetLimit added in v1.6.0

SetLimit sets the Limit field's value.

func (*DescribeConfigRuleEvaluationStatusInput) SetNextToken added in v1.6.0

SetNextToken sets the NextToken field's value.

func (DescribeConfigRuleEvaluationStatusInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigRuleEvaluationStatusOutput added in v0.9.13

type DescribeConfigRuleEvaluationStatusOutput struct {

	// Status information about your Config managed rules.
	ConfigRulesEvaluationStatus []*ConfigRuleEvaluationStatus `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigRuleEvaluationStatusOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigRuleEvaluationStatusOutput) SetConfigRulesEvaluationStatus added in v1.5.0

SetConfigRulesEvaluationStatus sets the ConfigRulesEvaluationStatus field's value.

func (*DescribeConfigRuleEvaluationStatusOutput) SetNextToken added in v1.6.0

SetNextToken sets the NextToken field's value.

func (DescribeConfigRuleEvaluationStatusOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigRulesFilters added in v1.44.147

type DescribeConfigRulesFilters struct {

	// The mode of an evaluation. The valid values are Detective or Proactive.
	EvaluationMode *string `type:"string" enum:"EvaluationMode"`
	// contains filtered or unexported fields
}

Returns a filtered list of Detective or Proactive Config rules. By default, if the filter is not defined, this API returns an unfiltered list. For more information on Detective or Proactive Config rules, see Evaluation Mode (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config-rules.html) in the Config Developer Guide.

func (DescribeConfigRulesFilters) GoString added in v1.44.147

func (s DescribeConfigRulesFilters) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigRulesFilters) SetEvaluationMode added in v1.44.147

SetEvaluationMode sets the EvaluationMode field's value.

func (DescribeConfigRulesFilters) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigRulesInput added in v0.9.13

type DescribeConfigRulesInput struct {

	// The names of the Config rules for which you want details. If you do not specify
	// any names, Config returns details for all your rules.
	ConfigRuleNames []*string `type:"list"`

	// Returns a list of Detective or Proactive Config rules. By default, this API
	// returns an unfiltered list. For more information on Detective or Proactive
	// Config rules, see Evaluation Mode (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config-rules.html)
	// in the Config Developer Guide.
	Filters *DescribeConfigRulesFilters `type:"structure"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigRulesInput) GoString added in v0.9.13

func (s DescribeConfigRulesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigRulesInput) SetConfigRuleNames added in v1.5.0

func (s *DescribeConfigRulesInput) SetConfigRuleNames(v []*string) *DescribeConfigRulesInput

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (*DescribeConfigRulesInput) SetFilters added in v1.44.147

SetFilters sets the Filters field's value.

func (*DescribeConfigRulesInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (DescribeConfigRulesInput) String added in v0.9.13

func (s DescribeConfigRulesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigRulesOutput added in v0.9.13

type DescribeConfigRulesOutput struct {

	// The details about your Config rules.
	ConfigRules []*ConfigRule `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigRulesOutput) GoString added in v0.9.13

func (s DescribeConfigRulesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigRulesOutput) SetConfigRules added in v1.5.0

SetConfigRules sets the ConfigRules field's value.

func (*DescribeConfigRulesOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (DescribeConfigRulesOutput) String added in v0.9.13

func (s DescribeConfigRulesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationAggregatorSourcesStatusInput added in v1.13.28

type DescribeConfigurationAggregatorSourcesStatusInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// The maximum number of AggregatorSourceStatus returned on each page. The default
	// is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Filters the status type.
	//
	//    * Valid value FAILED indicates errors while moving data.
	//
	//    * Valid value SUCCEEDED indicates the data was successfully moved.
	//
	//    * Valid value OUTDATED indicates the data is not the most recent.
	UpdateStatus []*string `min:"1" type:"list" enum:"AggregatedSourceStatusType"`
	// contains filtered or unexported fields
}

func (DescribeConfigurationAggregatorSourcesStatusInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationAggregatorSourcesStatusInput) SetConfigurationAggregatorName added in v1.13.28

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*DescribeConfigurationAggregatorSourcesStatusInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*DescribeConfigurationAggregatorSourcesStatusInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (*DescribeConfigurationAggregatorSourcesStatusInput) SetUpdateStatus added in v1.13.28

SetUpdateStatus sets the UpdateStatus field's value.

func (DescribeConfigurationAggregatorSourcesStatusInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationAggregatorSourcesStatusInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type DescribeConfigurationAggregatorSourcesStatusOutput added in v1.13.28

type DescribeConfigurationAggregatorSourcesStatusOutput struct {

	// Returns an AggregatedSourceStatus object.
	AggregatedSourceStatusList []*AggregatedSourceStatus `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigurationAggregatorSourcesStatusOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationAggregatorSourcesStatusOutput) SetAggregatedSourceStatusList added in v1.13.28

SetAggregatedSourceStatusList sets the AggregatedSourceStatusList field's value.

func (*DescribeConfigurationAggregatorSourcesStatusOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeConfigurationAggregatorSourcesStatusOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationAggregatorsInput added in v1.13.28

type DescribeConfigurationAggregatorsInput struct {

	// The name of the configuration aggregators.
	ConfigurationAggregatorNames []*string `type:"list"`

	// The maximum number of configuration aggregators returned on each page. The
	// default is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigurationAggregatorsInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationAggregatorsInput) SetConfigurationAggregatorNames added in v1.13.28

SetConfigurationAggregatorNames sets the ConfigurationAggregatorNames field's value.

func (*DescribeConfigurationAggregatorsInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*DescribeConfigurationAggregatorsInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeConfigurationAggregatorsInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationAggregatorsOutput added in v1.13.28

type DescribeConfigurationAggregatorsOutput struct {

	// Returns a ConfigurationAggregators object.
	ConfigurationAggregators []*ConfigurationAggregator `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConfigurationAggregatorsOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationAggregatorsOutput) SetConfigurationAggregators added in v1.13.28

SetConfigurationAggregators sets the ConfigurationAggregators field's value.

func (*DescribeConfigurationAggregatorsOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribeConfigurationAggregatorsOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationRecorderStatusInput

type DescribeConfigurationRecorderStatusInput struct {

	// The name(s) of the configuration recorder. If the name is not specified,
	// the action returns the current status of all the configuration recorders
	// associated with the account.
	ConfigurationRecorderNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeConfigurationRecorderStatus action.

func (DescribeConfigurationRecorderStatusInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationRecorderStatusInput) SetConfigurationRecorderNames added in v1.5.0

SetConfigurationRecorderNames sets the ConfigurationRecorderNames field's value.

func (DescribeConfigurationRecorderStatusInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationRecorderStatusOutput

type DescribeConfigurationRecorderStatusOutput struct {

	// A list that contains status of the specified recorders.
	ConfigurationRecordersStatus []*ConfigurationRecorderStatus `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeConfigurationRecorderStatus action, in JSON format.

func (DescribeConfigurationRecorderStatusOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationRecorderStatusOutput) SetConfigurationRecordersStatus added in v1.5.0

SetConfigurationRecordersStatus sets the ConfigurationRecordersStatus field's value.

func (DescribeConfigurationRecorderStatusOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationRecordersInput

type DescribeConfigurationRecordersInput struct {

	// A list of configuration recorder names.
	ConfigurationRecorderNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeConfigurationRecorders action.

func (DescribeConfigurationRecordersInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationRecordersInput) SetConfigurationRecorderNames added in v1.5.0

func (s *DescribeConfigurationRecordersInput) SetConfigurationRecorderNames(v []*string) *DescribeConfigurationRecordersInput

SetConfigurationRecorderNames sets the ConfigurationRecorderNames field's value.

func (DescribeConfigurationRecordersInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConfigurationRecordersOutput

type DescribeConfigurationRecordersOutput struct {

	// A list that contains the descriptions of the specified configuration recorders.
	ConfigurationRecorders []*ConfigurationRecorder `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeConfigurationRecorders action.

func (DescribeConfigurationRecordersOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConfigurationRecordersOutput) SetConfigurationRecorders added in v1.5.0

SetConfigurationRecorders sets the ConfigurationRecorders field's value.

func (DescribeConfigurationRecordersOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConformancePackComplianceInput added in v1.25.38

type DescribeConformancePackComplianceInput struct {

	// Name of the conformance pack.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// A ConformancePackComplianceFilters object.
	Filters *ConformancePackComplianceFilters `type:"structure"`

	// The maximum number of Config rules within a conformance pack are returned
	// on each page.
	Limit *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConformancePackComplianceInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePackComplianceInput) SetConformancePackName added in v1.25.38

SetConformancePackName sets the ConformancePackName field's value.

func (*DescribeConformancePackComplianceInput) SetFilters added in v1.25.38

SetFilters sets the Filters field's value.

func (*DescribeConformancePackComplianceInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*DescribeConformancePackComplianceInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (DescribeConformancePackComplianceInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePackComplianceInput) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type DescribeConformancePackComplianceOutput added in v1.25.38

type DescribeConformancePackComplianceOutput struct {

	// Name of the conformance pack.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// Returns a list of ConformancePackRuleCompliance objects.
	//
	// ConformancePackRuleComplianceList is a required field
	ConformancePackRuleComplianceList []*ConformancePackRuleCompliance `type:"list" required:"true"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConformancePackComplianceOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePackComplianceOutput) SetConformancePackName added in v1.25.38

SetConformancePackName sets the ConformancePackName field's value.

func (*DescribeConformancePackComplianceOutput) SetConformancePackRuleComplianceList added in v1.25.38

SetConformancePackRuleComplianceList sets the ConformancePackRuleComplianceList field's value.

func (*DescribeConformancePackComplianceOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (DescribeConformancePackComplianceOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConformancePackStatusInput added in v1.25.38

type DescribeConformancePackStatusInput struct {

	// Comma-separated list of conformance pack names.
	ConformancePackNames []*string `type:"list"`

	// The maximum number of conformance packs status returned on each page.
	Limit *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConformancePackStatusInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePackStatusInput) SetConformancePackNames added in v1.25.38

SetConformancePackNames sets the ConformancePackNames field's value.

func (*DescribeConformancePackStatusInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*DescribeConformancePackStatusInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (DescribeConformancePackStatusInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConformancePackStatusOutput added in v1.25.38

type DescribeConformancePackStatusOutput struct {

	// A list of ConformancePackStatusDetail objects.
	ConformancePackStatusDetails []*ConformancePackStatusDetail `type:"list"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConformancePackStatusOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePackStatusOutput) SetConformancePackStatusDetails added in v1.25.38

SetConformancePackStatusDetails sets the ConformancePackStatusDetails field's value.

func (*DescribeConformancePackStatusOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (DescribeConformancePackStatusOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConformancePacksInput added in v1.25.38

type DescribeConformancePacksInput struct {

	// Comma-separated list of conformance pack names for which you want details.
	// If you do not specify any names, Config returns details for all your conformance
	// packs.
	ConformancePackNames []*string `type:"list"`

	// The maximum number of conformance packs returned on each page.
	Limit *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConformancePacksInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePacksInput) SetConformancePackNames added in v1.25.38

func (s *DescribeConformancePacksInput) SetConformancePackNames(v []*string) *DescribeConformancePacksInput

SetConformancePackNames sets the ConformancePackNames field's value.

func (*DescribeConformancePacksInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*DescribeConformancePacksInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (DescribeConformancePacksInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeConformancePacksOutput added in v1.25.38

type DescribeConformancePacksOutput struct {

	// Returns a list of ConformancePackDetail objects.
	ConformancePackDetails []*ConformancePackDetail `type:"list"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribeConformancePacksOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeConformancePacksOutput) SetConformancePackDetails added in v1.25.38

SetConformancePackDetails sets the ConformancePackDetails field's value.

func (*DescribeConformancePacksOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (DescribeConformancePacksOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDeliveryChannelStatusInput

type DescribeDeliveryChannelStatusInput struct {

	// A list of delivery channel names.
	DeliveryChannelNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DeliveryChannelStatus action.

func (DescribeDeliveryChannelStatusInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDeliveryChannelStatusInput) SetDeliveryChannelNames added in v1.5.0

SetDeliveryChannelNames sets the DeliveryChannelNames field's value.

func (DescribeDeliveryChannelStatusInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDeliveryChannelStatusOutput

type DescribeDeliveryChannelStatusOutput struct {

	// A list that contains the status of a specified delivery channel.
	DeliveryChannelsStatus []*DeliveryChannelStatus `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeDeliveryChannelStatus action.

func (DescribeDeliveryChannelStatusOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDeliveryChannelStatusOutput) SetDeliveryChannelsStatus added in v1.5.0

SetDeliveryChannelsStatus sets the DeliveryChannelsStatus field's value.

func (DescribeDeliveryChannelStatusOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDeliveryChannelsInput

type DescribeDeliveryChannelsInput struct {

	// A list of delivery channel names.
	DeliveryChannelNames []*string `type:"list"`
	// contains filtered or unexported fields
}

The input for the DescribeDeliveryChannels action.

func (DescribeDeliveryChannelsInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDeliveryChannelsInput) SetDeliveryChannelNames added in v1.5.0

func (s *DescribeDeliveryChannelsInput) SetDeliveryChannelNames(v []*string) *DescribeDeliveryChannelsInput

SetDeliveryChannelNames sets the DeliveryChannelNames field's value.

func (DescribeDeliveryChannelsInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeDeliveryChannelsOutput

type DescribeDeliveryChannelsOutput struct {

	// A list that contains the descriptions of the specified delivery channel.
	DeliveryChannels []*DeliveryChannel `type:"list"`
	// contains filtered or unexported fields
}

The output for the DescribeDeliveryChannels action.

func (DescribeDeliveryChannelsOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeDeliveryChannelsOutput) SetDeliveryChannels added in v1.5.0

SetDeliveryChannels sets the DeliveryChannels field's value.

func (DescribeDeliveryChannelsOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConfigRuleStatusesInput added in v1.20.17

type DescribeOrganizationConfigRuleStatusesInput struct {

	// The maximum number of OrganizationConfigRuleStatuses returned on each page.
	// If you do no specify a number, Config uses the default. The default is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The names of organization Config rules for which you want status details.
	// If you do not specify any names, Config returns details for all your organization
	// Config rules.
	OrganizationConfigRuleNames []*string `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConfigRuleStatusesInput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConfigRuleStatusesInput) SetLimit added in v1.20.17

SetLimit sets the Limit field's value.

func (*DescribeOrganizationConfigRuleStatusesInput) SetNextToken added in v1.20.17

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConfigRuleStatusesInput) SetOrganizationConfigRuleNames added in v1.20.17

SetOrganizationConfigRuleNames sets the OrganizationConfigRuleNames field's value.

func (DescribeOrganizationConfigRuleStatusesInput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConfigRuleStatusesOutput added in v1.20.17

type DescribeOrganizationConfigRuleStatusesOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// A list of OrganizationConfigRuleStatus objects.
	OrganizationConfigRuleStatuses []*OrganizationConfigRuleStatus `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConfigRuleStatusesOutput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConfigRuleStatusesOutput) SetNextToken added in v1.20.17

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConfigRuleStatusesOutput) SetOrganizationConfigRuleStatuses added in v1.20.17

SetOrganizationConfigRuleStatuses sets the OrganizationConfigRuleStatuses field's value.

func (DescribeOrganizationConfigRuleStatusesOutput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConfigRulesInput added in v1.20.17

type DescribeOrganizationConfigRulesInput struct {

	// The maximum number of organization Config rules returned on each page. If
	// you do no specify a number, Config uses the default. The default is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The names of organization Config rules for which you want details. If you
	// do not specify any names, Config returns details for all your organization
	// Config rules.
	OrganizationConfigRuleNames []*string `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConfigRulesInput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConfigRulesInput) SetLimit added in v1.20.17

SetLimit sets the Limit field's value.

func (*DescribeOrganizationConfigRulesInput) SetNextToken added in v1.20.17

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConfigRulesInput) SetOrganizationConfigRuleNames added in v1.20.17

func (s *DescribeOrganizationConfigRulesInput) SetOrganizationConfigRuleNames(v []*string) *DescribeOrganizationConfigRulesInput

SetOrganizationConfigRuleNames sets the OrganizationConfigRuleNames field's value.

func (DescribeOrganizationConfigRulesInput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConfigRulesOutput added in v1.20.17

type DescribeOrganizationConfigRulesOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a list of OrganizationConfigRule objects.
	OrganizationConfigRules []*OrganizationConfigRule `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConfigRulesOutput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConfigRulesOutput) SetNextToken added in v1.20.17

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConfigRulesOutput) SetOrganizationConfigRules added in v1.20.17

SetOrganizationConfigRules sets the OrganizationConfigRules field's value.

func (DescribeOrganizationConfigRulesOutput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConformancePackStatusesInput added in v1.25.38

type DescribeOrganizationConformancePackStatusesInput struct {

	// The maximum number of OrganizationConformancePackStatuses returned on each
	// page. If you do no specify a number, Config uses the default. The default
	// is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The names of organization conformance packs for which you want status details.
	// If you do not specify any names, Config returns details for all your organization
	// conformance packs.
	OrganizationConformancePackNames []*string `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConformancePackStatusesInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConformancePackStatusesInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*DescribeOrganizationConformancePackStatusesInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConformancePackStatusesInput) SetOrganizationConformancePackNames added in v1.25.38

SetOrganizationConformancePackNames sets the OrganizationConformancePackNames field's value.

func (DescribeOrganizationConformancePackStatusesInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConformancePackStatusesOutput added in v1.25.38

type DescribeOrganizationConformancePackStatusesOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// A list of OrganizationConformancePackStatus objects.
	OrganizationConformancePackStatuses []*OrganizationConformancePackStatus `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConformancePackStatusesOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConformancePackStatusesOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConformancePackStatusesOutput) SetOrganizationConformancePackStatuses added in v1.25.38

SetOrganizationConformancePackStatuses sets the OrganizationConformancePackStatuses field's value.

func (DescribeOrganizationConformancePackStatusesOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConformancePacksInput added in v1.25.38

type DescribeOrganizationConformancePacksInput struct {

	// The maximum number of organization config packs returned on each page. If
	// you do no specify a number, Config uses the default. The default is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The name that you assign to an organization conformance pack.
	OrganizationConformancePackNames []*string `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConformancePacksInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConformancePacksInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*DescribeOrganizationConformancePacksInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConformancePacksInput) SetOrganizationConformancePackNames added in v1.25.38

SetOrganizationConformancePackNames sets the OrganizationConformancePackNames field's value.

func (DescribeOrganizationConformancePacksInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeOrganizationConformancePacksOutput added in v1.25.38

type DescribeOrganizationConformancePacksOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a list of OrganizationConformancePacks objects.
	OrganizationConformancePacks []*OrganizationConformancePack `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeOrganizationConformancePacksOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeOrganizationConformancePacksOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (*DescribeOrganizationConformancePacksOutput) SetOrganizationConformancePacks added in v1.25.38

SetOrganizationConformancePacks sets the OrganizationConformancePacks field's value.

func (DescribeOrganizationConformancePacksOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribePendingAggregationRequestsInput added in v1.13.28

type DescribePendingAggregationRequestsInput struct {

	// The maximum number of evaluation results returned on each page. The default
	// is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (DescribePendingAggregationRequestsInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribePendingAggregationRequestsInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*DescribePendingAggregationRequestsInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (DescribePendingAggregationRequestsInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribePendingAggregationRequestsOutput added in v1.13.28

type DescribePendingAggregationRequestsOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a PendingAggregationRequests object.
	PendingAggregationRequests []*PendingAggregationRequest `type:"list"`
	// contains filtered or unexported fields
}

func (DescribePendingAggregationRequestsOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribePendingAggregationRequestsOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (*DescribePendingAggregationRequestsOutput) SetPendingAggregationRequests added in v1.13.28

SetPendingAggregationRequests sets the PendingAggregationRequests field's value.

func (DescribePendingAggregationRequestsOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeRemediationConfigurationsInput added in v1.18.2

type DescribeRemediationConfigurationsInput struct {

	// A list of Config rule names of remediation configurations for which you want
	// details.
	//
	// ConfigRuleNames is a required field
	ConfigRuleNames []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (DescribeRemediationConfigurationsInput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationConfigurationsInput) SetConfigRuleNames added in v1.18.2

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (DescribeRemediationConfigurationsInput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationConfigurationsInput) Validate added in v1.18.2

Validate inspects the fields of the type to determine if they are valid.

type DescribeRemediationConfigurationsOutput added in v1.18.2

type DescribeRemediationConfigurationsOutput struct {

	// Returns a remediation configuration object.
	RemediationConfigurations []*RemediationConfiguration `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRemediationConfigurationsOutput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationConfigurationsOutput) SetRemediationConfigurations added in v1.18.2

SetRemediationConfigurations sets the RemediationConfigurations field's value.

func (DescribeRemediationConfigurationsOutput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeRemediationExceptionsInput added in v1.23.16

type DescribeRemediationExceptionsInput struct {

	// The name of the Config rule.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The maximum number of RemediationExceptionResourceKey returned on each page.
	// The default is 25. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`

	// An exception list of resource exception keys to be processed with the current
	// request. Config adds exception for each resource key. For example, Config
	// adds 3 exceptions for 3 resource keys.
	ResourceKeys []*RemediationExceptionResourceKey `min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRemediationExceptionsInput) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationExceptionsInput) SetConfigRuleName added in v1.23.16

SetConfigRuleName sets the ConfigRuleName field's value.

func (*DescribeRemediationExceptionsInput) SetLimit added in v1.23.16

SetLimit sets the Limit field's value.

func (*DescribeRemediationExceptionsInput) SetNextToken added in v1.23.16

SetNextToken sets the NextToken field's value.

func (*DescribeRemediationExceptionsInput) SetResourceKeys added in v1.23.16

SetResourceKeys sets the ResourceKeys field's value.

func (DescribeRemediationExceptionsInput) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationExceptionsInput) Validate added in v1.23.16

Validate inspects the fields of the type to determine if they are valid.

type DescribeRemediationExceptionsOutput added in v1.23.16

type DescribeRemediationExceptionsOutput struct {

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a list of remediation exception objects.
	RemediationExceptions []*RemediationException `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRemediationExceptionsOutput) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationExceptionsOutput) SetNextToken added in v1.23.16

SetNextToken sets the NextToken field's value.

func (*DescribeRemediationExceptionsOutput) SetRemediationExceptions added in v1.23.16

SetRemediationExceptions sets the RemediationExceptions field's value.

func (DescribeRemediationExceptionsOutput) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeRemediationExecutionStatusInput added in v1.18.2

type DescribeRemediationExecutionStatusInput struct {

	// A list of Config rule names.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The maximum number of RemediationExecutionStatuses returned on each page.
	// The default is maximum. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// A list of resource keys to be processed with the current request. Each element
	// in the list consists of the resource type and resource ID.
	ResourceKeys []*ResourceKey `min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRemediationExecutionStatusInput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationExecutionStatusInput) SetConfigRuleName added in v1.18.2

SetConfigRuleName sets the ConfigRuleName field's value.

func (*DescribeRemediationExecutionStatusInput) SetLimit added in v1.18.2

SetLimit sets the Limit field's value.

func (*DescribeRemediationExecutionStatusInput) SetNextToken added in v1.18.2

SetNextToken sets the NextToken field's value.

func (*DescribeRemediationExecutionStatusInput) SetResourceKeys added in v1.18.2

SetResourceKeys sets the ResourceKeys field's value.

func (DescribeRemediationExecutionStatusInput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationExecutionStatusInput) Validate added in v1.18.2

Validate inspects the fields of the type to determine if they are valid.

type DescribeRemediationExecutionStatusOutput added in v1.18.2

type DescribeRemediationExecutionStatusOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a list of remediation execution statuses objects.
	RemediationExecutionStatuses []*RemediationExecutionStatus `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRemediationExecutionStatusOutput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRemediationExecutionStatusOutput) SetNextToken added in v1.18.2

SetNextToken sets the NextToken field's value.

func (*DescribeRemediationExecutionStatusOutput) SetRemediationExecutionStatuses added in v1.18.2

SetRemediationExecutionStatuses sets the RemediationExecutionStatuses field's value.

func (DescribeRemediationExecutionStatusOutput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeRetentionConfigurationsInput added in v1.13.56

type DescribeRetentionConfigurationsInput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// A list of names of retention configurations for which you want details. If
	// you do not specify a name, Config returns details for all the retention configurations
	// for that account.
	//
	// Currently, Config supports only one retention configuration per region in
	// your account.
	RetentionConfigurationNames []*string `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRetentionConfigurationsInput) GoString added in v1.13.56

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRetentionConfigurationsInput) SetNextToken added in v1.13.56

SetNextToken sets the NextToken field's value.

func (*DescribeRetentionConfigurationsInput) SetRetentionConfigurationNames added in v1.13.56

func (s *DescribeRetentionConfigurationsInput) SetRetentionConfigurationNames(v []*string) *DescribeRetentionConfigurationsInput

SetRetentionConfigurationNames sets the RetentionConfigurationNames field's value.

func (DescribeRetentionConfigurationsInput) String added in v1.13.56

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DescribeRetentionConfigurationsOutput added in v1.13.56

type DescribeRetentionConfigurationsOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a retention configuration object.
	RetentionConfigurations []*RetentionConfiguration `type:"list"`
	// contains filtered or unexported fields
}

func (DescribeRetentionConfigurationsOutput) GoString added in v1.13.56

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DescribeRetentionConfigurationsOutput) SetNextToken added in v1.13.56

SetNextToken sets the NextToken field's value.

func (*DescribeRetentionConfigurationsOutput) SetRetentionConfigurations added in v1.13.56

SetRetentionConfigurations sets the RetentionConfigurations field's value.

func (DescribeRetentionConfigurationsOutput) String added in v1.13.56

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Evaluation added in v0.9.13

type Evaluation struct {

	// Supplementary information about how the evaluation determined the compliance.
	Annotation *string `min:"1" type:"string"`

	// The ID of the Amazon Web Services resource that was evaluated.
	//
	// ComplianceResourceId is a required field
	ComplianceResourceId *string `min:"1" type:"string" required:"true"`

	// The type of Amazon Web Services resource that was evaluated.
	//
	// ComplianceResourceType is a required field
	ComplianceResourceType *string `min:"1" type:"string" required:"true"`

	// Indicates whether the Amazon Web Services resource complies with the Config
	// rule that it was evaluated against.
	//
	// For the Evaluation data type, Config supports only the COMPLIANT, NON_COMPLIANT,
	// and NOT_APPLICABLE values. Config does not support the INSUFFICIENT_DATA
	// value for this data type.
	//
	// Similarly, Config does not accept INSUFFICIENT_DATA as the value for ComplianceType
	// from a PutEvaluations request. For example, an Lambda function for a custom
	// Config rule cannot pass an INSUFFICIENT_DATA value to Config.
	//
	// ComplianceType is a required field
	ComplianceType *string `type:"string" required:"true" enum:"ComplianceType"`

	// The time of the event in Config that triggered the evaluation. For event-based
	// evaluations, the time indicates when Config created the configuration item
	// that triggered the evaluation. For periodic evaluations, the time indicates
	// when Config triggered the evaluation at the frequency that you specified
	// (for example, every 24 hours).
	//
	// OrderingTimestamp is a required field
	OrderingTimestamp *time.Time `type:"timestamp" required:"true"`
	// contains filtered or unexported fields
}

Identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against.

func (Evaluation) GoString added in v0.9.13

func (s Evaluation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Evaluation) SetAnnotation added in v1.5.0

func (s *Evaluation) SetAnnotation(v string) *Evaluation

SetAnnotation sets the Annotation field's value.

func (*Evaluation) SetComplianceResourceId added in v1.5.0

func (s *Evaluation) SetComplianceResourceId(v string) *Evaluation

SetComplianceResourceId sets the ComplianceResourceId field's value.

func (*Evaluation) SetComplianceResourceType added in v1.5.0

func (s *Evaluation) SetComplianceResourceType(v string) *Evaluation

SetComplianceResourceType sets the ComplianceResourceType field's value.

func (*Evaluation) SetComplianceType added in v1.5.0

func (s *Evaluation) SetComplianceType(v string) *Evaluation

SetComplianceType sets the ComplianceType field's value.

func (*Evaluation) SetOrderingTimestamp added in v1.5.0

func (s *Evaluation) SetOrderingTimestamp(v time.Time) *Evaluation

SetOrderingTimestamp sets the OrderingTimestamp field's value.

func (Evaluation) String added in v0.9.13

func (s Evaluation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Evaluation) Validate added in v1.1.21

func (s *Evaluation) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EvaluationContext added in v1.44.147

type EvaluationContext struct {

	// A unique EvaluationContextIdentifier ID for an EvaluationContext.
	EvaluationContextIdentifier *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Use EvaluationContext to group independently initiated proactive resource evaluations. For example, CFN Stack. If you want to check just a resource definition, you do not need to provide evaluation context.

func (EvaluationContext) GoString added in v1.44.147

func (s EvaluationContext) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationContext) SetEvaluationContextIdentifier added in v1.44.147

func (s *EvaluationContext) SetEvaluationContextIdentifier(v string) *EvaluationContext

SetEvaluationContextIdentifier sets the EvaluationContextIdentifier field's value.

func (EvaluationContext) String added in v1.44.147

func (s EvaluationContext) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationContext) Validate added in v1.44.147

func (s *EvaluationContext) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EvaluationModeConfiguration added in v1.44.147

type EvaluationModeConfiguration struct {

	// The mode of an evaluation. The valid values are Detective or Proactive.
	Mode *string `type:"string" enum:"EvaluationMode"`
	// contains filtered or unexported fields
}

The configuration object for Config rule evaluation mode. The supported valid values are Detective or Proactive.

func (EvaluationModeConfiguration) GoString added in v1.44.147

func (s EvaluationModeConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationModeConfiguration) SetMode added in v1.44.147

SetMode sets the Mode field's value.

func (EvaluationModeConfiguration) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EvaluationResult added in v0.9.13

type EvaluationResult struct {

	// Supplementary information about how the evaluation determined the compliance.
	Annotation *string `min:"1" type:"string"`

	// Indicates whether the Amazon Web Services resource complies with the Config
	// rule that evaluated it.
	//
	// For the EvaluationResult data type, Config supports only the COMPLIANT, NON_COMPLIANT,
	// and NOT_APPLICABLE values. Config does not support the INSUFFICIENT_DATA
	// value for the EvaluationResult data type.
	ComplianceType *string `type:"string" enum:"ComplianceType"`

	// The time when the Config rule evaluated the Amazon Web Services resource.
	ConfigRuleInvokedTime *time.Time `type:"timestamp"`

	// Uniquely identifies the evaluation result.
	EvaluationResultIdentifier *EvaluationResultIdentifier `type:"structure"`

	// The time when Config recorded the evaluation result.
	ResultRecordedTime *time.Time `type:"timestamp"`

	// An encrypted token that associates an evaluation with an Config rule. The
	// token identifies the rule, the Amazon Web Services resource being evaluated,
	// and the event that triggered the evaluation.
	ResultToken *string `type:"string"`
	// contains filtered or unexported fields
}

The details of an Config evaluation. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information.

func (EvaluationResult) GoString added in v0.9.13

func (s EvaluationResult) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationResult) SetAnnotation added in v1.5.0

func (s *EvaluationResult) SetAnnotation(v string) *EvaluationResult

SetAnnotation sets the Annotation field's value.

func (*EvaluationResult) SetComplianceType added in v1.5.0

func (s *EvaluationResult) SetComplianceType(v string) *EvaluationResult

SetComplianceType sets the ComplianceType field's value.

func (*EvaluationResult) SetConfigRuleInvokedTime added in v1.5.0

func (s *EvaluationResult) SetConfigRuleInvokedTime(v time.Time) *EvaluationResult

SetConfigRuleInvokedTime sets the ConfigRuleInvokedTime field's value.

func (*EvaluationResult) SetEvaluationResultIdentifier added in v1.5.0

func (s *EvaluationResult) SetEvaluationResultIdentifier(v *EvaluationResultIdentifier) *EvaluationResult

SetEvaluationResultIdentifier sets the EvaluationResultIdentifier field's value.

func (*EvaluationResult) SetResultRecordedTime added in v1.5.0

func (s *EvaluationResult) SetResultRecordedTime(v time.Time) *EvaluationResult

SetResultRecordedTime sets the ResultRecordedTime field's value.

func (*EvaluationResult) SetResultToken added in v1.5.0

func (s *EvaluationResult) SetResultToken(v string) *EvaluationResult

SetResultToken sets the ResultToken field's value.

func (EvaluationResult) String added in v0.9.13

func (s EvaluationResult) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EvaluationResultIdentifier added in v0.9.13

type EvaluationResultIdentifier struct {

	// Identifies an Config rule used to evaluate an Amazon Web Services resource,
	// and provides the type and ID of the evaluated resource.
	EvaluationResultQualifier *EvaluationResultQualifier `type:"structure"`

	// The time of the event that triggered the evaluation of your Amazon Web Services
	// resources. The time can indicate when Config delivered a configuration item
	// change notification, or it can indicate when Config delivered the configuration
	// snapshot, depending on which event triggered the evaluation.
	OrderingTimestamp *time.Time `type:"timestamp"`

	// A Unique ID for an evaluation result.
	ResourceEvaluationId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Uniquely identifies an evaluation result.

func (EvaluationResultIdentifier) GoString added in v0.9.13

func (s EvaluationResultIdentifier) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationResultIdentifier) SetEvaluationResultQualifier added in v1.5.0

SetEvaluationResultQualifier sets the EvaluationResultQualifier field's value.

func (*EvaluationResultIdentifier) SetOrderingTimestamp added in v1.5.0

func (s *EvaluationResultIdentifier) SetOrderingTimestamp(v time.Time) *EvaluationResultIdentifier

SetOrderingTimestamp sets the OrderingTimestamp field's value.

func (*EvaluationResultIdentifier) SetResourceEvaluationId added in v1.44.147

func (s *EvaluationResultIdentifier) SetResourceEvaluationId(v string) *EvaluationResultIdentifier

SetResourceEvaluationId sets the ResourceEvaluationId field's value.

func (EvaluationResultIdentifier) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EvaluationResultQualifier added in v0.9.13

type EvaluationResultQualifier struct {

	// The name of the Config rule that was used in the evaluation.
	ConfigRuleName *string `min:"1" type:"string"`

	// The mode of an evaluation. The valid values are Detective or Proactive.
	EvaluationMode *string `type:"string" enum:"EvaluationMode"`

	// The ID of the evaluated Amazon Web Services resource.
	ResourceId *string `min:"1" type:"string"`

	// The type of Amazon Web Services resource that was evaluated.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Identifies an Config rule that evaluated an Amazon Web Services resource, and provides the type and ID of the resource that the rule evaluated.

func (EvaluationResultQualifier) GoString added in v0.9.13

func (s EvaluationResultQualifier) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationResultQualifier) SetConfigRuleName added in v1.5.0

SetConfigRuleName sets the ConfigRuleName field's value.

func (*EvaluationResultQualifier) SetEvaluationMode added in v1.44.147

SetEvaluationMode sets the EvaluationMode field's value.

func (*EvaluationResultQualifier) SetResourceId added in v1.5.0

SetResourceId sets the ResourceId field's value.

func (*EvaluationResultQualifier) SetResourceType added in v1.5.0

SetResourceType sets the ResourceType field's value.

func (EvaluationResultQualifier) String added in v0.9.13

func (s EvaluationResultQualifier) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EvaluationStatus added in v1.44.147

type EvaluationStatus struct {

	// An explanation for failed execution status.
	FailureReason *string `min:"1" type:"string"`

	// The status of an execution. The valid values are In_Progress, Succeeded or
	// Failed.
	//
	// Status is a required field
	Status *string `type:"string" required:"true" enum:"ResourceEvaluationStatus"`
	// contains filtered or unexported fields
}

Returns status details of an evaluation.

func (EvaluationStatus) GoString added in v1.44.147

func (s EvaluationStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EvaluationStatus) SetFailureReason added in v1.44.147

func (s *EvaluationStatus) SetFailureReason(v string) *EvaluationStatus

SetFailureReason sets the FailureReason field's value.

func (*EvaluationStatus) SetStatus added in v1.44.147

func (s *EvaluationStatus) SetStatus(v string) *EvaluationStatus

SetStatus sets the Status field's value.

func (EvaluationStatus) String added in v1.44.147

func (s EvaluationStatus) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ExclusionByResourceTypes added in v1.44.273

type ExclusionByResourceTypes struct {

	// A comma-separated list of resource types to exclude from recording by the
	// configuration recorder.
	ResourceTypes []*string `locationName:"resourceTypes" type:"list" enum:"ResourceType"`
	// contains filtered or unexported fields
}

Specifies whether the configuration recorder excludes certain resource types from being recorded. Use the resourceTypes field to enter a comma-separated list of resource types you want to exclude from recording.

By default, when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types, Config starts recording resources of that type automatically.

How to use the exclusion recording strategy

To use this option, you must set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html) to EXCLUSION_BY_RESOURCE_TYPES.

Config will then record configuration changes for all supported resource types, except the resource types that you specify to exclude from being recorded.

Global resource types and the exclusion recording strategy

Unless specifically listed as exclusions, AWS::RDS::GlobalCluster will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.

IAM users, groups, roles, and customer managed policies will be recorded in the Region where you set up the configuration recorder if that is a Region where Config was available before February 2022. You cannot be record the global IAM resouce types in Regions supported by Config after February 2022. This list where you cannot record the global IAM resource types includes the following Regions:

  • Asia Pacific (Hyderabad)

  • Asia Pacific (Melbourne)

  • Canada West (Calgary)

  • Europe (Spain)

  • Europe (Zurich)

  • Israel (Tel Aviv)

  • Middle East (UAE)

func (ExclusionByResourceTypes) GoString added in v1.44.273

func (s ExclusionByResourceTypes) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExclusionByResourceTypes) SetResourceTypes added in v1.44.273

func (s *ExclusionByResourceTypes) SetResourceTypes(v []*string) *ExclusionByResourceTypes

SetResourceTypes sets the ResourceTypes field's value.

func (ExclusionByResourceTypes) String added in v1.44.273

func (s ExclusionByResourceTypes) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ExecutionControls added in v1.23.16

type ExecutionControls struct {

	// A SsmControls object.
	SsmControls *SsmControls `type:"structure"`
	// contains filtered or unexported fields
}

The controls that Config uses for executing remediations.

func (ExecutionControls) GoString added in v1.23.16

func (s ExecutionControls) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutionControls) SetSsmControls added in v1.23.16

func (s *ExecutionControls) SetSsmControls(v *SsmControls) *ExecutionControls

SetSsmControls sets the SsmControls field's value.

func (ExecutionControls) String added in v1.23.16

func (s ExecutionControls) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutionControls) Validate added in v1.23.16

func (s *ExecutionControls) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ExternalEvaluation added in v1.36.11

type ExternalEvaluation struct {

	// Supplementary information about the reason of compliance. For example, this
	// task was completed on a specific date.
	Annotation *string `min:"1" type:"string"`

	// The evaluated compliance resource ID. Config accepts only Amazon Web Services
	// account ID.
	//
	// ComplianceResourceId is a required field
	ComplianceResourceId *string `min:"1" type:"string" required:"true"`

	// The evaluated compliance resource type. Config accepts AWS::::Account resource
	// type.
	//
	// ComplianceResourceType is a required field
	ComplianceResourceType *string `min:"1" type:"string" required:"true"`

	// The compliance of the Amazon Web Services resource. The valid values are
	// COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE.
	//
	// ComplianceType is a required field
	ComplianceType *string `type:"string" required:"true" enum:"ComplianceType"`

	// The time when the compliance was recorded.
	//
	// OrderingTimestamp is a required field
	OrderingTimestamp *time.Time `type:"timestamp" required:"true"`
	// contains filtered or unexported fields
}

Identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against.

func (ExternalEvaluation) GoString added in v1.36.11

func (s ExternalEvaluation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExternalEvaluation) SetAnnotation added in v1.36.11

func (s *ExternalEvaluation) SetAnnotation(v string) *ExternalEvaluation

SetAnnotation sets the Annotation field's value.

func (*ExternalEvaluation) SetComplianceResourceId added in v1.36.11

func (s *ExternalEvaluation) SetComplianceResourceId(v string) *ExternalEvaluation

SetComplianceResourceId sets the ComplianceResourceId field's value.

func (*ExternalEvaluation) SetComplianceResourceType added in v1.36.11

func (s *ExternalEvaluation) SetComplianceResourceType(v string) *ExternalEvaluation

SetComplianceResourceType sets the ComplianceResourceType field's value.

func (*ExternalEvaluation) SetComplianceType added in v1.36.11

func (s *ExternalEvaluation) SetComplianceType(v string) *ExternalEvaluation

SetComplianceType sets the ComplianceType field's value.

func (*ExternalEvaluation) SetOrderingTimestamp added in v1.36.11

func (s *ExternalEvaluation) SetOrderingTimestamp(v time.Time) *ExternalEvaluation

SetOrderingTimestamp sets the OrderingTimestamp field's value.

func (ExternalEvaluation) String added in v1.36.11

func (s ExternalEvaluation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExternalEvaluation) Validate added in v1.36.11

func (s *ExternalEvaluation) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FailedDeleteRemediationExceptionsBatch added in v1.23.16

type FailedDeleteRemediationExceptionsBatch struct {

	// Returns remediation exception resource key object of the failed items.
	FailedItems []*RemediationExceptionResourceKey `min:"1" type:"list"`

	// Returns a failure message for delete remediation exception. For example,
	// Config creates an exception due to an internal error.
	FailureMessage *string `type:"string"`
	// contains filtered or unexported fields
}

List of each of the failed delete remediation exceptions with specific reasons.

func (FailedDeleteRemediationExceptionsBatch) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailedDeleteRemediationExceptionsBatch) SetFailedItems added in v1.23.16

SetFailedItems sets the FailedItems field's value.

func (*FailedDeleteRemediationExceptionsBatch) SetFailureMessage added in v1.23.16

SetFailureMessage sets the FailureMessage field's value.

func (FailedDeleteRemediationExceptionsBatch) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type FailedRemediationBatch added in v1.18.2

type FailedRemediationBatch struct {

	// Returns remediation configurations of the failed items.
	FailedItems []*RemediationConfiguration `type:"list"`

	// Returns a failure message. For example, the resource is already compliant.
	FailureMessage *string `type:"string"`
	// contains filtered or unexported fields
}

List of each of the failed remediations with specific reasons.

func (FailedRemediationBatch) GoString added in v1.18.2

func (s FailedRemediationBatch) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailedRemediationBatch) SetFailedItems added in v1.18.2

SetFailedItems sets the FailedItems field's value.

func (*FailedRemediationBatch) SetFailureMessage added in v1.18.2

func (s *FailedRemediationBatch) SetFailureMessage(v string) *FailedRemediationBatch

SetFailureMessage sets the FailureMessage field's value.

func (FailedRemediationBatch) String added in v1.18.2

func (s FailedRemediationBatch) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type FailedRemediationExceptionBatch added in v1.23.16

type FailedRemediationExceptionBatch struct {

	// Returns remediation exception resource key object of the failed items.
	FailedItems []*RemediationException `type:"list"`

	// Returns a failure message. For example, the auto-remediation has failed.
	FailureMessage *string `type:"string"`
	// contains filtered or unexported fields
}

List of each of the failed remediation exceptions with specific reasons.

func (FailedRemediationExceptionBatch) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailedRemediationExceptionBatch) SetFailedItems added in v1.23.16

SetFailedItems sets the FailedItems field's value.

func (*FailedRemediationExceptionBatch) SetFailureMessage added in v1.23.16

SetFailureMessage sets the FailureMessage field's value.

func (FailedRemediationExceptionBatch) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type FieldInfo added in v1.18.5

type FieldInfo struct {

	// Name of the field.
	Name *string `type:"string"`
	// contains filtered or unexported fields
}

Details about the fields such as name of the field.

func (FieldInfo) GoString added in v1.18.5

func (s FieldInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FieldInfo) SetName added in v1.18.5

func (s *FieldInfo) SetName(v string) *FieldInfo

SetName sets the Name field's value.

func (FieldInfo) String added in v1.18.5

func (s FieldInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetAggregateComplianceDetailsByConfigRuleInput added in v1.13.28

type GetAggregateComplianceDetailsByConfigRuleInput struct {

	// The 12-digit account ID of the source account.
	//
	// AccountId is a required field
	AccountId *string `type:"string" required:"true"`

	// The source region from where the data is aggregated.
	//
	// AwsRegion is a required field
	AwsRegion *string `min:"1" type:"string" required:"true"`

	// The resource compliance status.
	//
	// For the GetAggregateComplianceDetailsByConfigRuleRequest data type, Config
	// supports only the COMPLIANT and NON_COMPLIANT. Config does not support the
	// NOT_APPLICABLE and INSUFFICIENT_DATA values.
	ComplianceType *string `type:"string" enum:"ComplianceType"`

	// The name of the Config rule for which you want compliance information.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// The maximum number of evaluation results returned on each page. The default
	// is 50. You cannot specify a number greater than 100. If you specify 0, Config
	// uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateComplianceDetailsByConfigRuleInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetAccountId added in v1.13.28

SetAccountId sets the AccountId field's value.

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetAwsRegion added in v1.13.28

SetAwsRegion sets the AwsRegion field's value.

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetComplianceType added in v1.13.28

SetComplianceType sets the ComplianceType field's value.

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetConfigRuleName added in v1.13.28

SetConfigRuleName sets the ConfigRuleName field's value.

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetConfigurationAggregatorName added in v1.13.28

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*GetAggregateComplianceDetailsByConfigRuleInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (GetAggregateComplianceDetailsByConfigRuleInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateComplianceDetailsByConfigRuleInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type GetAggregateComplianceDetailsByConfigRuleOutput added in v1.13.28

type GetAggregateComplianceDetailsByConfigRuleOutput struct {

	// Returns an AggregateEvaluationResults object.
	AggregateEvaluationResults []*AggregateEvaluationResult `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateComplianceDetailsByConfigRuleOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateComplianceDetailsByConfigRuleOutput) SetAggregateEvaluationResults added in v1.13.28

SetAggregateEvaluationResults sets the AggregateEvaluationResults field's value.

func (*GetAggregateComplianceDetailsByConfigRuleOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (GetAggregateComplianceDetailsByConfigRuleOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetAggregateConfigRuleComplianceSummaryInput added in v1.13.28

type GetAggregateConfigRuleComplianceSummaryInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// Filters the results based on the ConfigRuleComplianceSummaryFilters object.
	Filters *ConfigRuleComplianceSummaryFilters `type:"structure"`

	// Groups the result based on ACCOUNT_ID or AWS_REGION.
	GroupByKey *string `type:"string" enum:"ConfigRuleComplianceSummaryGroupKey"`

	// The maximum number of evaluation results returned on each page. The default
	// is 1000. You cannot specify a number greater than 1000. If you specify 0,
	// Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateConfigRuleComplianceSummaryInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateConfigRuleComplianceSummaryInput) SetConfigurationAggregatorName added in v1.13.28

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*GetAggregateConfigRuleComplianceSummaryInput) SetFilters added in v1.13.28

SetFilters sets the Filters field's value.

func (*GetAggregateConfigRuleComplianceSummaryInput) SetGroupByKey added in v1.13.28

SetGroupByKey sets the GroupByKey field's value.

func (*GetAggregateConfigRuleComplianceSummaryInput) SetLimit added in v1.13.28

SetLimit sets the Limit field's value.

func (*GetAggregateConfigRuleComplianceSummaryInput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (GetAggregateConfigRuleComplianceSummaryInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateConfigRuleComplianceSummaryInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type GetAggregateConfigRuleComplianceSummaryOutput added in v1.13.28

type GetAggregateConfigRuleComplianceSummaryOutput struct {

	// Returns a list of AggregateComplianceCounts object.
	AggregateComplianceCounts []*AggregateComplianceCount `type:"list"`

	// Groups the result based on ACCOUNT_ID or AWS_REGION.
	GroupByKey *string `min:"1" type:"string"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateConfigRuleComplianceSummaryOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateConfigRuleComplianceSummaryOutput) SetAggregateComplianceCounts added in v1.13.28

SetAggregateComplianceCounts sets the AggregateComplianceCounts field's value.

func (*GetAggregateConfigRuleComplianceSummaryOutput) SetGroupByKey added in v1.13.28

SetGroupByKey sets the GroupByKey field's value.

func (*GetAggregateConfigRuleComplianceSummaryOutput) SetNextToken added in v1.13.28

SetNextToken sets the NextToken field's value.

func (GetAggregateConfigRuleComplianceSummaryOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetAggregateConformancePackComplianceSummaryInput added in v1.38.9

type GetAggregateConformancePackComplianceSummaryInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// Filters the results based on the AggregateConformancePackComplianceSummaryFilters
	// object.
	Filters *AggregateConformancePackComplianceSummaryFilters `type:"structure"`

	// Groups the result based on Amazon Web Services account ID or Amazon Web Services
	// Region.
	GroupByKey *string `type:"string" enum:"AggregateConformancePackComplianceSummaryGroupKey"`

	// The maximum number of results returned on each page. The default is maximum.
	// If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateConformancePackComplianceSummaryInput) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateConformancePackComplianceSummaryInput) SetConfigurationAggregatorName added in v1.38.9

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*GetAggregateConformancePackComplianceSummaryInput) SetFilters added in v1.38.9

SetFilters sets the Filters field's value.

func (*GetAggregateConformancePackComplianceSummaryInput) SetGroupByKey added in v1.38.9

SetGroupByKey sets the GroupByKey field's value.

func (*GetAggregateConformancePackComplianceSummaryInput) SetLimit added in v1.38.9

SetLimit sets the Limit field's value.

func (*GetAggregateConformancePackComplianceSummaryInput) SetNextToken added in v1.38.9

SetNextToken sets the NextToken field's value.

func (GetAggregateConformancePackComplianceSummaryInput) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateConformancePackComplianceSummaryInput) Validate added in v1.38.9

Validate inspects the fields of the type to determine if they are valid.

type GetAggregateConformancePackComplianceSummaryOutput added in v1.38.9

type GetAggregateConformancePackComplianceSummaryOutput struct {

	// Returns a list of AggregateConformancePackComplianceSummary object.
	AggregateConformancePackComplianceSummaries []*AggregateConformancePackComplianceSummary `type:"list"`

	// Groups the result based on Amazon Web Services account ID or Amazon Web Services
	// Region.
	GroupByKey *string `min:"1" type:"string"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateConformancePackComplianceSummaryOutput) GoString added in v1.38.9

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateConformancePackComplianceSummaryOutput) SetAggregateConformancePackComplianceSummaries added in v1.38.9

SetAggregateConformancePackComplianceSummaries sets the AggregateConformancePackComplianceSummaries field's value.

func (*GetAggregateConformancePackComplianceSummaryOutput) SetGroupByKey added in v1.38.9

SetGroupByKey sets the GroupByKey field's value.

func (*GetAggregateConformancePackComplianceSummaryOutput) SetNextToken added in v1.38.9

SetNextToken sets the NextToken field's value.

func (GetAggregateConformancePackComplianceSummaryOutput) String added in v1.38.9

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetAggregateDiscoveredResourceCountsInput added in v1.15.79

type GetAggregateDiscoveredResourceCountsInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// Filters the results based on the ResourceCountFilters object.
	Filters *ResourceCountFilters `type:"structure"`

	// The key to group the resource counts.
	GroupByKey *string `type:"string" enum:"ResourceCountGroupKey"`

	// The maximum number of GroupedResourceCount objects returned on each page.
	// The default is 1000. You cannot specify a number greater than 1000. If you
	// specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetAggregateDiscoveredResourceCountsInput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateDiscoveredResourceCountsInput) SetConfigurationAggregatorName added in v1.15.79

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*GetAggregateDiscoveredResourceCountsInput) SetFilters added in v1.15.79

SetFilters sets the Filters field's value.

func (*GetAggregateDiscoveredResourceCountsInput) SetGroupByKey added in v1.15.79

SetGroupByKey sets the GroupByKey field's value.

func (*GetAggregateDiscoveredResourceCountsInput) SetLimit added in v1.15.79

SetLimit sets the Limit field's value.

func (*GetAggregateDiscoveredResourceCountsInput) SetNextToken added in v1.15.79

SetNextToken sets the NextToken field's value.

func (GetAggregateDiscoveredResourceCountsInput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateDiscoveredResourceCountsInput) Validate added in v1.15.79

Validate inspects the fields of the type to determine if they are valid.

type GetAggregateDiscoveredResourceCountsOutput added in v1.15.79

type GetAggregateDiscoveredResourceCountsOutput struct {

	// The key passed into the request object. If GroupByKey is not provided, the
	// result will be empty.
	GroupByKey *string `min:"1" type:"string"`

	// Returns a list of GroupedResourceCount objects.
	GroupedResourceCounts []*GroupedResourceCount `type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The total number of resources that are present in an aggregator with the
	// filters that you provide.
	//
	// TotalDiscoveredResources is a required field
	TotalDiscoveredResources *int64 `type:"long" required:"true"`
	// contains filtered or unexported fields
}

func (GetAggregateDiscoveredResourceCountsOutput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateDiscoveredResourceCountsOutput) SetGroupByKey added in v1.15.79

SetGroupByKey sets the GroupByKey field's value.

func (*GetAggregateDiscoveredResourceCountsOutput) SetGroupedResourceCounts added in v1.15.79

SetGroupedResourceCounts sets the GroupedResourceCounts field's value.

func (*GetAggregateDiscoveredResourceCountsOutput) SetNextToken added in v1.15.79

SetNextToken sets the NextToken field's value.

func (*GetAggregateDiscoveredResourceCountsOutput) SetTotalDiscoveredResources added in v1.15.79

SetTotalDiscoveredResources sets the TotalDiscoveredResources field's value.

func (GetAggregateDiscoveredResourceCountsOutput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetAggregateResourceConfigInput added in v1.15.79

type GetAggregateResourceConfigInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// An object that identifies aggregate resource.
	//
	// ResourceIdentifier is a required field
	ResourceIdentifier *AggregateResourceIdentifier `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (GetAggregateResourceConfigInput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateResourceConfigInput) SetConfigurationAggregatorName added in v1.15.79

func (s *GetAggregateResourceConfigInput) SetConfigurationAggregatorName(v string) *GetAggregateResourceConfigInput

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*GetAggregateResourceConfigInput) SetResourceIdentifier added in v1.15.79

SetResourceIdentifier sets the ResourceIdentifier field's value.

func (GetAggregateResourceConfigInput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateResourceConfigInput) Validate added in v1.15.79

func (s *GetAggregateResourceConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetAggregateResourceConfigOutput added in v1.15.79

type GetAggregateResourceConfigOutput struct {

	// Returns a ConfigurationItem object.
	ConfigurationItem *ConfigurationItem `type:"structure"`
	// contains filtered or unexported fields
}

func (GetAggregateResourceConfigOutput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetAggregateResourceConfigOutput) SetConfigurationItem added in v1.15.79

SetConfigurationItem sets the ConfigurationItem field's value.

func (GetAggregateResourceConfigOutput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetComplianceDetailsByConfigRuleInput added in v0.9.13

type GetComplianceDetailsByConfigRuleInput struct {

	// Filters the results by compliance.
	//
	// INSUFFICIENT_DATA is a valid ComplianceType that is returned when an Config
	// rule cannot be evaluated. However, INSUFFICIENT_DATA cannot be used as a
	// ComplianceType for filtering results.
	ComplianceTypes []*string `type:"list" enum:"ComplianceType"`

	// The name of the Config rule for which you want compliance information.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The maximum number of evaluation results returned on each page. The default
	// is 10. You cannot specify a number greater than 100. If you specify 0, Config
	// uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByConfigRuleInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceDetailsByConfigRuleInput) SetComplianceTypes added in v1.5.0

SetComplianceTypes sets the ComplianceTypes field's value.

func (*GetComplianceDetailsByConfigRuleInput) SetConfigRuleName added in v1.5.0

SetConfigRuleName sets the ConfigRuleName field's value.

func (*GetComplianceDetailsByConfigRuleInput) SetLimit added in v1.5.0

SetLimit sets the Limit field's value.

func (*GetComplianceDetailsByConfigRuleInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (GetComplianceDetailsByConfigRuleInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceDetailsByConfigRuleInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetComplianceDetailsByConfigRuleOutput added in v0.9.13

type GetComplianceDetailsByConfigRuleOutput struct {

	// Indicates whether the Amazon Web Services resource complies with the specified
	// Config rule.
	EvaluationResults []*EvaluationResult `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByConfigRuleOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceDetailsByConfigRuleOutput) SetEvaluationResults added in v1.5.0

SetEvaluationResults sets the EvaluationResults field's value.

func (*GetComplianceDetailsByConfigRuleOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (GetComplianceDetailsByConfigRuleOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetComplianceDetailsByResourceInput added in v0.9.13

type GetComplianceDetailsByResourceInput struct {

	// Filters the results by compliance.
	//
	// INSUFFICIENT_DATA is a valid ComplianceType that is returned when an Config
	// rule cannot be evaluated. However, INSUFFICIENT_DATA cannot be used as a
	// ComplianceType for filtering results.
	ComplianceTypes []*string `type:"list" enum:"ComplianceType"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The unique ID of Amazon Web Services resource execution for which you want
	// to retrieve evaluation results.
	//
	// You need to only provide either a ResourceEvaluationID or a ResourceID and
	// ResourceType.
	ResourceEvaluationId *string `min:"1" type:"string"`

	// The ID of the Amazon Web Services resource for which you want compliance
	// information.
	ResourceId *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource for which you want compliance
	// information.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByResourceInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceDetailsByResourceInput) SetComplianceTypes added in v1.5.0

SetComplianceTypes sets the ComplianceTypes field's value.

func (*GetComplianceDetailsByResourceInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*GetComplianceDetailsByResourceInput) SetResourceEvaluationId added in v1.44.147

SetResourceEvaluationId sets the ResourceEvaluationId field's value.

func (*GetComplianceDetailsByResourceInput) SetResourceId added in v1.5.0

SetResourceId sets the ResourceId field's value.

func (*GetComplianceDetailsByResourceInput) SetResourceType added in v1.5.0

SetResourceType sets the ResourceType field's value.

func (GetComplianceDetailsByResourceInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceDetailsByResourceInput) Validate added in v1.1.21

Validate inspects the fields of the type to determine if they are valid.

type GetComplianceDetailsByResourceOutput added in v0.9.13

type GetComplianceDetailsByResourceOutput struct {

	// Indicates whether the specified Amazon Web Services resource complies each
	// Config rule.
	EvaluationResults []*EvaluationResult `type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetComplianceDetailsByResourceOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceDetailsByResourceOutput) SetEvaluationResults added in v1.5.0

SetEvaluationResults sets the EvaluationResults field's value.

func (*GetComplianceDetailsByResourceOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (GetComplianceDetailsByResourceOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetComplianceSummaryByConfigRuleInput added in v0.9.13

type GetComplianceSummaryByConfigRuleInput struct {
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByConfigRuleInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (GetComplianceSummaryByConfigRuleInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetComplianceSummaryByConfigRuleOutput added in v0.9.13

type GetComplianceSummaryByConfigRuleOutput struct {

	// The number of Config rules that are compliant and the number that are noncompliant,
	// up to a maximum of 25 for each.
	ComplianceSummary *ComplianceSummary `type:"structure"`
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByConfigRuleOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceSummaryByConfigRuleOutput) SetComplianceSummary added in v1.5.0

SetComplianceSummary sets the ComplianceSummary field's value.

func (GetComplianceSummaryByConfigRuleOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetComplianceSummaryByResourceTypeInput added in v0.9.13

type GetComplianceSummaryByResourceTypeInput struct {

	// Specify one or more resource types to get the number of resources that are
	// compliant and the number that are noncompliant for each resource type.
	//
	// For this request, you can specify an Amazon Web Services resource type such
	// as AWS::EC2::Instance. You can specify that the resource type is an Amazon
	// Web Services account by specifying AWS::::Account.
	ResourceTypes []*string `type:"list"`
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByResourceTypeInput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceSummaryByResourceTypeInput) SetResourceTypes added in v1.5.0

SetResourceTypes sets the ResourceTypes field's value.

func (GetComplianceSummaryByResourceTypeInput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetComplianceSummaryByResourceTypeOutput added in v0.9.13

type GetComplianceSummaryByResourceTypeOutput struct {

	// The number of resources that are compliant and the number that are noncompliant.
	// If one or more resource types were provided with the request, the numbers
	// are returned for each resource type. The maximum number returned is 100.
	ComplianceSummariesByResourceType []*ComplianceSummaryByResourceType `type:"list"`
	// contains filtered or unexported fields
}

func (GetComplianceSummaryByResourceTypeOutput) GoString added in v0.9.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetComplianceSummaryByResourceTypeOutput) SetComplianceSummariesByResourceType added in v1.5.0

SetComplianceSummariesByResourceType sets the ComplianceSummariesByResourceType field's value.

func (GetComplianceSummaryByResourceTypeOutput) String added in v0.9.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetConformancePackComplianceDetailsInput added in v1.25.38

type GetConformancePackComplianceDetailsInput struct {

	// Name of the conformance pack.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// A ConformancePackEvaluationFilters object.
	Filters *ConformancePackEvaluationFilters `type:"structure"`

	// The maximum number of evaluation results returned on each page. If you do
	// no specify a number, Config uses the default. The default is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetConformancePackComplianceDetailsInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetConformancePackComplianceDetailsInput) SetConformancePackName added in v1.25.38

SetConformancePackName sets the ConformancePackName field's value.

func (*GetConformancePackComplianceDetailsInput) SetFilters added in v1.25.38

SetFilters sets the Filters field's value.

func (*GetConformancePackComplianceDetailsInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*GetConformancePackComplianceDetailsInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (GetConformancePackComplianceDetailsInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetConformancePackComplianceDetailsInput) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type GetConformancePackComplianceDetailsOutput added in v1.25.38

type GetConformancePackComplianceDetailsOutput struct {

	// Name of the conformance pack.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// Returns a list of ConformancePackEvaluationResult objects.
	ConformancePackRuleEvaluationResults []*ConformancePackEvaluationResult `type:"list"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetConformancePackComplianceDetailsOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetConformancePackComplianceDetailsOutput) SetConformancePackName added in v1.25.38

SetConformancePackName sets the ConformancePackName field's value.

func (*GetConformancePackComplianceDetailsOutput) SetConformancePackRuleEvaluationResults added in v1.25.38

SetConformancePackRuleEvaluationResults sets the ConformancePackRuleEvaluationResults field's value.

func (*GetConformancePackComplianceDetailsOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (GetConformancePackComplianceDetailsOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetConformancePackComplianceSummaryInput added in v1.25.38

type GetConformancePackComplianceSummaryInput struct {

	// Names of conformance packs.
	//
	// ConformancePackNames is a required field
	ConformancePackNames []*string `min:"1" type:"list" required:"true"`

	// The maximum number of conformance packs returned on each page.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetConformancePackComplianceSummaryInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetConformancePackComplianceSummaryInput) SetConformancePackNames added in v1.25.38

SetConformancePackNames sets the ConformancePackNames field's value.

func (*GetConformancePackComplianceSummaryInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*GetConformancePackComplianceSummaryInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (GetConformancePackComplianceSummaryInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetConformancePackComplianceSummaryInput) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type GetConformancePackComplianceSummaryOutput added in v1.25.38

type GetConformancePackComplianceSummaryOutput struct {

	// A list of ConformancePackComplianceSummary objects.
	ConformancePackComplianceSummaryList []*ConformancePackComplianceSummary `min:"1" type:"list"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetConformancePackComplianceSummaryOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetConformancePackComplianceSummaryOutput) SetConformancePackComplianceSummaryList added in v1.25.38

SetConformancePackComplianceSummaryList sets the ConformancePackComplianceSummaryList field's value.

func (*GetConformancePackComplianceSummaryOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (GetConformancePackComplianceSummaryOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetCustomRulePolicyInput added in v1.43.25

type GetCustomRulePolicyInput struct {

	// The name of your Config Custom Policy rule.
	ConfigRuleName *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (GetCustomRulePolicyInput) GoString added in v1.43.25

func (s GetCustomRulePolicyInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetCustomRulePolicyInput) SetConfigRuleName added in v1.43.25

func (s *GetCustomRulePolicyInput) SetConfigRuleName(v string) *GetCustomRulePolicyInput

SetConfigRuleName sets the ConfigRuleName field's value.

func (GetCustomRulePolicyInput) String added in v1.43.25

func (s GetCustomRulePolicyInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetCustomRulePolicyInput) Validate added in v1.43.25

func (s *GetCustomRulePolicyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCustomRulePolicyOutput added in v1.43.25

type GetCustomRulePolicyOutput struct {

	// The policy definition containing the logic for your Config Custom Policy
	// rule.
	PolicyText *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetCustomRulePolicyOutput) GoString added in v1.43.25

func (s GetCustomRulePolicyOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetCustomRulePolicyOutput) SetPolicyText added in v1.43.25

SetPolicyText sets the PolicyText field's value.

func (GetCustomRulePolicyOutput) String added in v1.43.25

func (s GetCustomRulePolicyOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDiscoveredResourceCountsInput added in v1.10.20

type GetDiscoveredResourceCountsInput struct {

	// The maximum number of ResourceCount objects returned on each page. The default
	// is 100. You cannot specify a number greater than 100. If you specify 0, Config
	// uses the default.
	Limit *int64 `locationName:"limit" type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The comma-separated list that specifies the resource types that you want
	// Config to return (for example, "AWS::EC2::Instance", "AWS::IAM::User").
	//
	// If a value for resourceTypes is not specified, Config returns all resource
	// types that Config is recording in the region for your account.
	//
	// If the configuration recorder is turned off, Config returns an empty list
	// of ResourceCount objects. If the configuration recorder is not recording
	// a specific resource type (for example, S3 buckets), that resource type is
	// not returned in the list of ResourceCount objects.
	ResourceTypes []*string `locationName:"resourceTypes" type:"list"`
	// contains filtered or unexported fields
}

func (GetDiscoveredResourceCountsInput) GoString added in v1.10.20

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDiscoveredResourceCountsInput) SetLimit added in v1.10.20

SetLimit sets the Limit field's value.

func (*GetDiscoveredResourceCountsInput) SetNextToken added in v1.10.20

SetNextToken sets the NextToken field's value.

func (*GetDiscoveredResourceCountsInput) SetResourceTypes added in v1.10.20

SetResourceTypes sets the ResourceTypes field's value.

func (GetDiscoveredResourceCountsInput) String added in v1.10.20

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetDiscoveredResourceCountsOutput added in v1.10.20

type GetDiscoveredResourceCountsOutput struct {

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The list of ResourceCount objects. Each object is listed in descending order
	// by the number of resources.
	ResourceCounts []*ResourceCount `locationName:"resourceCounts" type:"list"`

	// The total number of resources that Config is recording in the region for
	// your account. If you specify resource types in the request, Config returns
	// only the total number of resources for those resource types.
	//
	// Example
	//
	// Config is recording three resource types in the US East (Ohio) Region for
	// your account: 25 EC2 instances, 20 IAM users, and 15 S3 buckets, for a total
	// of 60 resources.
	//
	// You make a call to the GetDiscoveredResourceCounts action and specify the
	// resource type, "AWS::EC2::Instances", in the request.
	//
	// Config returns 25 for totalDiscoveredResources.
	TotalDiscoveredResources *int64 `locationName:"totalDiscoveredResources" type:"long"`
	// contains filtered or unexported fields
}

func (GetDiscoveredResourceCountsOutput) GoString added in v1.10.20

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetDiscoveredResourceCountsOutput) SetNextToken added in v1.10.20

SetNextToken sets the NextToken field's value.

func (*GetDiscoveredResourceCountsOutput) SetResourceCounts added in v1.10.20

SetResourceCounts sets the ResourceCounts field's value.

func (*GetDiscoveredResourceCountsOutput) SetTotalDiscoveredResources added in v1.10.20

SetTotalDiscoveredResources sets the TotalDiscoveredResources field's value.

func (GetDiscoveredResourceCountsOutput) String added in v1.10.20

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetOrganizationConfigRuleDetailedStatusInput added in v1.20.17

type GetOrganizationConfigRuleDetailedStatusInput struct {

	// A StatusDetailFilters object.
	Filters *StatusDetailFilters `type:"structure"`

	// The maximum number of OrganizationConfigRuleDetailedStatus returned on each
	// page. If you do not specify a number, Config uses the default. The default
	// is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The name of your organization Config rule for which you want status details
	// for member accounts.
	//
	// OrganizationConfigRuleName is a required field
	OrganizationConfigRuleName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetOrganizationConfigRuleDetailedStatusInput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationConfigRuleDetailedStatusInput) SetFilters added in v1.20.17

SetFilters sets the Filters field's value.

func (*GetOrganizationConfigRuleDetailedStatusInput) SetLimit added in v1.20.17

SetLimit sets the Limit field's value.

func (*GetOrganizationConfigRuleDetailedStatusInput) SetNextToken added in v1.20.17

SetNextToken sets the NextToken field's value.

func (*GetOrganizationConfigRuleDetailedStatusInput) SetOrganizationConfigRuleName added in v1.20.17

SetOrganizationConfigRuleName sets the OrganizationConfigRuleName field's value.

func (GetOrganizationConfigRuleDetailedStatusInput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationConfigRuleDetailedStatusInput) Validate added in v1.20.17

Validate inspects the fields of the type to determine if they are valid.

type GetOrganizationConfigRuleDetailedStatusOutput added in v1.20.17

type GetOrganizationConfigRuleDetailedStatusOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// A list of MemberAccountStatus objects.
	OrganizationConfigRuleDetailedStatus []*MemberAccountStatus `type:"list"`
	// contains filtered or unexported fields
}

func (GetOrganizationConfigRuleDetailedStatusOutput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationConfigRuleDetailedStatusOutput) SetNextToken added in v1.20.17

SetNextToken sets the NextToken field's value.

func (*GetOrganizationConfigRuleDetailedStatusOutput) SetOrganizationConfigRuleDetailedStatus added in v1.20.17

SetOrganizationConfigRuleDetailedStatus sets the OrganizationConfigRuleDetailedStatus field's value.

func (GetOrganizationConfigRuleDetailedStatusOutput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetOrganizationConformancePackDetailedStatusInput added in v1.25.38

type GetOrganizationConformancePackDetailedStatusInput struct {

	// An OrganizationResourceDetailedStatusFilters object.
	Filters *OrganizationResourceDetailedStatusFilters `type:"structure"`

	// The maximum number of OrganizationConformancePackDetailedStatuses returned
	// on each page. If you do not specify a number, Config uses the default. The
	// default is 100.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The name of organization conformance pack for which you want status details
	// for member accounts.
	//
	// OrganizationConformancePackName is a required field
	OrganizationConformancePackName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetOrganizationConformancePackDetailedStatusInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationConformancePackDetailedStatusInput) SetFilters added in v1.25.38

SetFilters sets the Filters field's value.

func (*GetOrganizationConformancePackDetailedStatusInput) SetLimit added in v1.25.38

SetLimit sets the Limit field's value.

func (*GetOrganizationConformancePackDetailedStatusInput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (*GetOrganizationConformancePackDetailedStatusInput) SetOrganizationConformancePackName added in v1.25.38

SetOrganizationConformancePackName sets the OrganizationConformancePackName field's value.

func (GetOrganizationConformancePackDetailedStatusInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationConformancePackDetailedStatusInput) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type GetOrganizationConformancePackDetailedStatusOutput added in v1.25.38

type GetOrganizationConformancePackDetailedStatusOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// A list of OrganizationConformancePackDetailedStatus objects.
	OrganizationConformancePackDetailedStatuses []*OrganizationConformancePackDetailedStatus `type:"list"`
	// contains filtered or unexported fields
}

func (GetOrganizationConformancePackDetailedStatusOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationConformancePackDetailedStatusOutput) SetNextToken added in v1.25.38

SetNextToken sets the NextToken field's value.

func (*GetOrganizationConformancePackDetailedStatusOutput) SetOrganizationConformancePackDetailedStatuses added in v1.25.38

SetOrganizationConformancePackDetailedStatuses sets the OrganizationConformancePackDetailedStatuses field's value.

func (GetOrganizationConformancePackDetailedStatusOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetOrganizationCustomRulePolicyInput added in v1.43.25

type GetOrganizationCustomRulePolicyInput struct {

	// The name of your organization Config Custom Policy rule.
	//
	// OrganizationConfigRuleName is a required field
	OrganizationConfigRuleName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetOrganizationCustomRulePolicyInput) GoString added in v1.43.25

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationCustomRulePolicyInput) SetOrganizationConfigRuleName added in v1.43.25

SetOrganizationConfigRuleName sets the OrganizationConfigRuleName field's value.

func (GetOrganizationCustomRulePolicyInput) String added in v1.43.25

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationCustomRulePolicyInput) Validate added in v1.43.25

Validate inspects the fields of the type to determine if they are valid.

type GetOrganizationCustomRulePolicyOutput added in v1.43.25

type GetOrganizationCustomRulePolicyOutput struct {

	// The policy definition containing the logic for your organization Config Custom
	// Policy rule.
	PolicyText *string `type:"string"`
	// contains filtered or unexported fields
}

func (GetOrganizationCustomRulePolicyOutput) GoString added in v1.43.25

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetOrganizationCustomRulePolicyOutput) SetPolicyText added in v1.43.25

SetPolicyText sets the PolicyText field's value.

func (GetOrganizationCustomRulePolicyOutput) String added in v1.43.25

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetResourceConfigHistoryInput

type GetResourceConfigHistoryInput struct {

	// The chronological order for configuration items listed. By default, the results
	// are listed in reverse chronological order.
	ChronologicalOrder *string `locationName:"chronologicalOrder" type:"string" enum:"ChronologicalOrder"`

	// The chronologically earliest time in the time range for which the history
	// requested. If not specified, the action returns paginated results that contain
	// configuration items that start when the first configuration item was recorded.
	EarlierTime *time.Time `locationName:"earlierTime" type:"timestamp"`

	// The chronologically latest time in the time range for which the history requested.
	// If not specified, current time is taken.
	LaterTime *time.Time `locationName:"laterTime" type:"timestamp"`

	// The maximum number of configuration items returned on each page. The default
	// is 10. You cannot specify a number greater than 100. If you specify 0, Config
	// uses the default.
	Limit *int64 `locationName:"limit" type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The ID of the resource (for example., sg-xxxxxx).
	//
	// ResourceId is a required field
	ResourceId *string `locationName:"resourceId" min:"1" type:"string" required:"true"`

	// The resource type.
	//
	// ResourceType is a required field
	ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The input for the GetResourceConfigHistory action.

func (GetResourceConfigHistoryInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetResourceConfigHistoryInput) SetChronologicalOrder added in v1.5.0

SetChronologicalOrder sets the ChronologicalOrder field's value.

func (*GetResourceConfigHistoryInput) SetEarlierTime added in v1.5.0

SetEarlierTime sets the EarlierTime field's value.

func (*GetResourceConfigHistoryInput) SetLaterTime added in v1.5.0

SetLaterTime sets the LaterTime field's value.

func (*GetResourceConfigHistoryInput) SetLimit added in v1.5.0

SetLimit sets the Limit field's value.

func (*GetResourceConfigHistoryInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*GetResourceConfigHistoryInput) SetResourceId added in v1.5.0

SetResourceId sets the ResourceId field's value.

func (*GetResourceConfigHistoryInput) SetResourceType added in v1.5.0

SetResourceType sets the ResourceType field's value.

func (GetResourceConfigHistoryInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetResourceConfigHistoryInput) Validate added in v1.1.21

func (s *GetResourceConfigHistoryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetResourceConfigHistoryOutput

type GetResourceConfigHistoryOutput struct {

	// A list that contains the configuration history of one or more resources.
	ConfigurationItems []*ConfigurationItem `locationName:"configurationItems" type:"list"`

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

The output for the GetResourceConfigHistory action.

func (GetResourceConfigHistoryOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetResourceConfigHistoryOutput) SetConfigurationItems added in v1.5.0

SetConfigurationItems sets the ConfigurationItems field's value.

func (*GetResourceConfigHistoryOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (GetResourceConfigHistoryOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetResourceEvaluationSummaryInput added in v1.44.147

type GetResourceEvaluationSummaryInput struct {

	// The unique ResourceEvaluationId of Amazon Web Services resource execution
	// for which you want to retrieve the evaluation summary.
	//
	// ResourceEvaluationId is a required field
	ResourceEvaluationId *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetResourceEvaluationSummaryInput) GoString added in v1.44.147

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetResourceEvaluationSummaryInput) SetResourceEvaluationId added in v1.44.147

SetResourceEvaluationId sets the ResourceEvaluationId field's value.

func (GetResourceEvaluationSummaryInput) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetResourceEvaluationSummaryInput) Validate added in v1.44.147

Validate inspects the fields of the type to determine if they are valid.

type GetResourceEvaluationSummaryOutput added in v1.44.147

type GetResourceEvaluationSummaryOutput struct {

	// The compliance status of the resource evaluation summary.
	Compliance *string `type:"string" enum:"ComplianceType"`

	// Returns an EvaluationContext object.
	EvaluationContext *EvaluationContext `type:"structure"`

	// Lists results of the mode that you requested to retrieve the resource evaluation
	// summary. The valid values are Detective or Proactive.
	EvaluationMode *string `type:"string" enum:"EvaluationMode"`

	// The start timestamp when Config rule starts evaluating compliance for the
	// provided resource details.
	EvaluationStartTimestamp *time.Time `type:"timestamp"`

	// Returns an EvaluationStatus object.
	EvaluationStatus *EvaluationStatus `type:"structure"`

	// Returns a ResourceDetails object.
	ResourceDetails *ResourceDetails `type:"structure"`

	// The unique ResourceEvaluationId of Amazon Web Services resource execution
	// for which you want to retrieve the evaluation summary.
	ResourceEvaluationId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (GetResourceEvaluationSummaryOutput) GoString added in v1.44.147

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetResourceEvaluationSummaryOutput) SetCompliance added in v1.44.147

SetCompliance sets the Compliance field's value.

func (*GetResourceEvaluationSummaryOutput) SetEvaluationContext added in v1.44.147

SetEvaluationContext sets the EvaluationContext field's value.

func (*GetResourceEvaluationSummaryOutput) SetEvaluationMode added in v1.44.147

SetEvaluationMode sets the EvaluationMode field's value.

func (*GetResourceEvaluationSummaryOutput) SetEvaluationStartTimestamp added in v1.44.147

SetEvaluationStartTimestamp sets the EvaluationStartTimestamp field's value.

func (*GetResourceEvaluationSummaryOutput) SetEvaluationStatus added in v1.44.147

SetEvaluationStatus sets the EvaluationStatus field's value.

func (*GetResourceEvaluationSummaryOutput) SetResourceDetails added in v1.44.147

SetResourceDetails sets the ResourceDetails field's value.

func (*GetResourceEvaluationSummaryOutput) SetResourceEvaluationId added in v1.44.147

SetResourceEvaluationId sets the ResourceEvaluationId field's value.

func (GetResourceEvaluationSummaryOutput) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetStoredQueryInput added in v1.36.13

type GetStoredQueryInput struct {

	// The name of the query.
	//
	// QueryName is a required field
	QueryName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (GetStoredQueryInput) GoString added in v1.36.13

func (s GetStoredQueryInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetStoredQueryInput) SetQueryName added in v1.36.13

func (s *GetStoredQueryInput) SetQueryName(v string) *GetStoredQueryInput

SetQueryName sets the QueryName field's value.

func (GetStoredQueryInput) String added in v1.36.13

func (s GetStoredQueryInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetStoredQueryInput) Validate added in v1.36.13

func (s *GetStoredQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetStoredQueryOutput added in v1.36.13

type GetStoredQueryOutput struct {

	// Returns a StoredQuery object.
	StoredQuery *StoredQuery `type:"structure"`
	// contains filtered or unexported fields
}

func (GetStoredQueryOutput) GoString added in v1.36.13

func (s GetStoredQueryOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetStoredQueryOutput) SetStoredQuery added in v1.36.13

func (s *GetStoredQueryOutput) SetStoredQuery(v *StoredQuery) *GetStoredQueryOutput

SetStoredQuery sets the StoredQuery field's value.

func (GetStoredQueryOutput) String added in v1.36.13

func (s GetStoredQueryOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GroupedResourceCount added in v1.15.79

type GroupedResourceCount struct {

	// The name of the group that can be region, account ID, or resource type. For
	// example, region1, region2 if the region was chosen as GroupByKey.
	//
	// GroupName is a required field
	GroupName *string `min:"1" type:"string" required:"true"`

	// The number of resources in the group.
	//
	// ResourceCount is a required field
	ResourceCount *int64 `type:"long" required:"true"`
	// contains filtered or unexported fields
}

The count of resources that are grouped by the group name.

func (GroupedResourceCount) GoString added in v1.15.79

func (s GroupedResourceCount) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GroupedResourceCount) SetGroupName added in v1.15.79

func (s *GroupedResourceCount) SetGroupName(v string) *GroupedResourceCount

SetGroupName sets the GroupName field's value.

func (*GroupedResourceCount) SetResourceCount added in v1.15.79

func (s *GroupedResourceCount) SetResourceCount(v int64) *GroupedResourceCount

SetResourceCount sets the ResourceCount field's value.

func (GroupedResourceCount) String added in v1.15.79

func (s GroupedResourceCount) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type IdempotentParameterMismatch added in v1.44.147

type IdempotentParameterMismatch struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Using the same client token with one or more different parameters. Specify a new client token with the parameter changes and try again.

func (*IdempotentParameterMismatch) Code added in v1.44.147

Code returns the exception type name.

func (*IdempotentParameterMismatch) Error added in v1.44.147

func (IdempotentParameterMismatch) GoString added in v1.44.147

func (s IdempotentParameterMismatch) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*IdempotentParameterMismatch) Message added in v1.44.147

func (s *IdempotentParameterMismatch) Message() string

Message returns the exception's message.

func (*IdempotentParameterMismatch) OrigErr added in v1.44.147

func (s *IdempotentParameterMismatch) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*IdempotentParameterMismatch) RequestID added in v1.44.147

func (s *IdempotentParameterMismatch) RequestID() string

RequestID returns the service's response RequestID for request.

func (*IdempotentParameterMismatch) StatusCode added in v1.44.147

func (s *IdempotentParameterMismatch) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (IdempotentParameterMismatch) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InsufficientDeliveryPolicyException added in v1.28.0

type InsufficientDeliveryPolicyException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Your Amazon S3 bucket policy does not permit Config to write to it.

func (*InsufficientDeliveryPolicyException) Code added in v1.28.0

Code returns the exception type name.

func (*InsufficientDeliveryPolicyException) Error added in v1.28.0

func (InsufficientDeliveryPolicyException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InsufficientDeliveryPolicyException) Message added in v1.28.0

Message returns the exception's message.

func (*InsufficientDeliveryPolicyException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InsufficientDeliveryPolicyException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*InsufficientDeliveryPolicyException) StatusCode added in v1.28.0

func (s *InsufficientDeliveryPolicyException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InsufficientDeliveryPolicyException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InsufficientPermissionsException added in v1.28.0

type InsufficientPermissionsException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Indicates one of the following errors:

  • For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.

  • For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.

  • For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM GetRole action or create a service-linked role.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions: You do not have permission to call IAM GetRole action or create a service-linked role. You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.

func (*InsufficientPermissionsException) Code added in v1.28.0

Code returns the exception type name.

func (*InsufficientPermissionsException) Error added in v1.28.0

func (InsufficientPermissionsException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InsufficientPermissionsException) Message added in v1.28.0

Message returns the exception's message.

func (*InsufficientPermissionsException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InsufficientPermissionsException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*InsufficientPermissionsException) StatusCode added in v1.28.0

func (s *InsufficientPermissionsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InsufficientPermissionsException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidConfigurationRecorderNameException added in v1.28.0

type InvalidConfigurationRecorderNameException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have provided a name for the configuration recorder that is not valid.

func (*InvalidConfigurationRecorderNameException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidConfigurationRecorderNameException) Error added in v1.28.0

func (InvalidConfigurationRecorderNameException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidConfigurationRecorderNameException) Message added in v1.28.0

Message returns the exception's message.

func (*InvalidConfigurationRecorderNameException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidConfigurationRecorderNameException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*InvalidConfigurationRecorderNameException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (InvalidConfigurationRecorderNameException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidDeliveryChannelNameException added in v1.28.0

type InvalidDeliveryChannelNameException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified delivery channel name is not valid.

func (*InvalidDeliveryChannelNameException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidDeliveryChannelNameException) Error added in v1.28.0

func (InvalidDeliveryChannelNameException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidDeliveryChannelNameException) Message added in v1.28.0

Message returns the exception's message.

func (*InvalidDeliveryChannelNameException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidDeliveryChannelNameException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*InvalidDeliveryChannelNameException) StatusCode added in v1.28.0

func (s *InvalidDeliveryChannelNameException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidDeliveryChannelNameException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidExpressionException added in v1.28.0

type InvalidExpressionException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The syntax of the query is incorrect.

func (*InvalidExpressionException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidExpressionException) Error added in v1.28.0

func (InvalidExpressionException) GoString added in v1.28.0

func (s InvalidExpressionException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidExpressionException) Message added in v1.28.0

func (s *InvalidExpressionException) Message() string

Message returns the exception's message.

func (*InvalidExpressionException) OrigErr added in v1.28.0

func (s *InvalidExpressionException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidExpressionException) RequestID added in v1.28.0

func (s *InvalidExpressionException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidExpressionException) StatusCode added in v1.28.0

func (s *InvalidExpressionException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidExpressionException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidLimitException added in v1.28.0

type InvalidLimitException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified limit is outside the allowable range.

func (*InvalidLimitException) Code added in v1.28.0

func (s *InvalidLimitException) Code() string

Code returns the exception type name.

func (*InvalidLimitException) Error added in v1.28.0

func (s *InvalidLimitException) Error() string

func (InvalidLimitException) GoString added in v1.28.0

func (s InvalidLimitException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidLimitException) Message added in v1.28.0

func (s *InvalidLimitException) Message() string

Message returns the exception's message.

func (*InvalidLimitException) OrigErr added in v1.28.0

func (s *InvalidLimitException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidLimitException) RequestID added in v1.28.0

func (s *InvalidLimitException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidLimitException) StatusCode added in v1.28.0

func (s *InvalidLimitException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidLimitException) String added in v1.28.0

func (s InvalidLimitException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidNextTokenException added in v1.28.0

type InvalidNextTokenException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified next token is not valid. Specify the nextToken string that was returned in the previous response to get the next page of results.

func (*InvalidNextTokenException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidNextTokenException) Error added in v1.28.0

func (s *InvalidNextTokenException) Error() string

func (InvalidNextTokenException) GoString added in v1.28.0

func (s InvalidNextTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidNextTokenException) Message added in v1.28.0

func (s *InvalidNextTokenException) Message() string

Message returns the exception's message.

func (*InvalidNextTokenException) OrigErr added in v1.28.0

func (s *InvalidNextTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidNextTokenException) RequestID added in v1.28.0

func (s *InvalidNextTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidNextTokenException) StatusCode added in v1.28.0

func (s *InvalidNextTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidNextTokenException) String added in v1.28.0

func (s InvalidNextTokenException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidParameterValueException added in v1.28.0

type InvalidParameterValueException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

One or more of the specified parameters are not valid. Verify that your parameters are valid and try again.

func (*InvalidParameterValueException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidParameterValueException) Error added in v1.28.0

func (InvalidParameterValueException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidParameterValueException) Message added in v1.28.0

Message returns the exception's message.

func (*InvalidParameterValueException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidParameterValueException) RequestID added in v1.28.0

func (s *InvalidParameterValueException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidParameterValueException) StatusCode added in v1.28.0

func (s *InvalidParameterValueException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidParameterValueException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidRecordingGroupException added in v1.28.0

type InvalidRecordingGroupException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Indicates one of the following errors:

func (*InvalidRecordingGroupException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidRecordingGroupException) Error added in v1.28.0

func (InvalidRecordingGroupException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidRecordingGroupException) Message added in v1.28.0

Message returns the exception's message.

func (*InvalidRecordingGroupException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidRecordingGroupException) RequestID added in v1.28.0

func (s *InvalidRecordingGroupException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidRecordingGroupException) StatusCode added in v1.28.0

func (s *InvalidRecordingGroupException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidRecordingGroupException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidResultTokenException added in v1.28.0

type InvalidResultTokenException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified ResultToken is not valid.

func (*InvalidResultTokenException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidResultTokenException) Error added in v1.28.0

func (InvalidResultTokenException) GoString added in v1.28.0

func (s InvalidResultTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidResultTokenException) Message added in v1.28.0

func (s *InvalidResultTokenException) Message() string

Message returns the exception's message.

func (*InvalidResultTokenException) OrigErr added in v1.28.0

func (s *InvalidResultTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidResultTokenException) RequestID added in v1.28.0

func (s *InvalidResultTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidResultTokenException) StatusCode added in v1.28.0

func (s *InvalidResultTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidResultTokenException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidRoleException added in v1.28.0

type InvalidRoleException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have provided a null or empty Amazon Resource Name (ARN) for the IAM role assumed by Config and used by the configuration recorder.

func (*InvalidRoleException) Code added in v1.28.0

func (s *InvalidRoleException) Code() string

Code returns the exception type name.

func (*InvalidRoleException) Error added in v1.28.0

func (s *InvalidRoleException) Error() string

func (InvalidRoleException) GoString added in v1.28.0

func (s InvalidRoleException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidRoleException) Message added in v1.28.0

func (s *InvalidRoleException) Message() string

Message returns the exception's message.

func (*InvalidRoleException) OrigErr added in v1.28.0

func (s *InvalidRoleException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidRoleException) RequestID added in v1.28.0

func (s *InvalidRoleException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidRoleException) StatusCode added in v1.28.0

func (s *InvalidRoleException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidRoleException) String added in v1.28.0

func (s InvalidRoleException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidS3KeyPrefixException added in v1.28.0

type InvalidS3KeyPrefixException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified Amazon S3 key prefix is not valid.

func (*InvalidS3KeyPrefixException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidS3KeyPrefixException) Error added in v1.28.0

func (InvalidS3KeyPrefixException) GoString added in v1.28.0

func (s InvalidS3KeyPrefixException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidS3KeyPrefixException) Message added in v1.28.0

func (s *InvalidS3KeyPrefixException) Message() string

Message returns the exception's message.

func (*InvalidS3KeyPrefixException) OrigErr added in v1.28.0

func (s *InvalidS3KeyPrefixException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidS3KeyPrefixException) RequestID added in v1.28.0

func (s *InvalidS3KeyPrefixException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidS3KeyPrefixException) StatusCode added in v1.28.0

func (s *InvalidS3KeyPrefixException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidS3KeyPrefixException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidS3KmsKeyArnException added in v1.37.11

type InvalidS3KmsKeyArnException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified Amazon KMS Key ARN is not valid.

func (*InvalidS3KmsKeyArnException) Code added in v1.37.11

Code returns the exception type name.

func (*InvalidS3KmsKeyArnException) Error added in v1.37.11

func (InvalidS3KmsKeyArnException) GoString added in v1.37.11

func (s InvalidS3KmsKeyArnException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidS3KmsKeyArnException) Message added in v1.37.11

func (s *InvalidS3KmsKeyArnException) Message() string

Message returns the exception's message.

func (*InvalidS3KmsKeyArnException) OrigErr added in v1.37.11

func (s *InvalidS3KmsKeyArnException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidS3KmsKeyArnException) RequestID added in v1.37.11

func (s *InvalidS3KmsKeyArnException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidS3KmsKeyArnException) StatusCode added in v1.37.11

func (s *InvalidS3KmsKeyArnException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidS3KmsKeyArnException) String added in v1.37.11

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidSNSTopicARNException added in v1.28.0

type InvalidSNSTopicARNException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified Amazon SNS topic does not exist.

func (*InvalidSNSTopicARNException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidSNSTopicARNException) Error added in v1.28.0

func (InvalidSNSTopicARNException) GoString added in v1.28.0

func (s InvalidSNSTopicARNException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidSNSTopicARNException) Message added in v1.28.0

func (s *InvalidSNSTopicARNException) Message() string

Message returns the exception's message.

func (*InvalidSNSTopicARNException) OrigErr added in v1.28.0

func (s *InvalidSNSTopicARNException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidSNSTopicARNException) RequestID added in v1.28.0

func (s *InvalidSNSTopicARNException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidSNSTopicARNException) StatusCode added in v1.28.0

func (s *InvalidSNSTopicARNException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidSNSTopicARNException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTimeRangeException added in v1.28.0

type InvalidTimeRangeException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified time range is not valid. The earlier time is not chronologically before the later time.

func (*InvalidTimeRangeException) Code added in v1.28.0

Code returns the exception type name.

func (*InvalidTimeRangeException) Error added in v1.28.0

func (s *InvalidTimeRangeException) Error() string

func (InvalidTimeRangeException) GoString added in v1.28.0

func (s InvalidTimeRangeException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTimeRangeException) Message added in v1.28.0

func (s *InvalidTimeRangeException) Message() string

Message returns the exception's message.

func (*InvalidTimeRangeException) OrigErr added in v1.28.0

func (s *InvalidTimeRangeException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTimeRangeException) RequestID added in v1.28.0

func (s *InvalidTimeRangeException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTimeRangeException) StatusCode added in v1.28.0

func (s *InvalidTimeRangeException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTimeRangeException) String added in v1.28.0

func (s InvalidTimeRangeException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LastDeliveryChannelDeleteFailedException added in v1.28.0

type LastDeliveryChannelDeleteFailedException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You cannot delete the delivery channel you specified because the configuration recorder is running.

func (*LastDeliveryChannelDeleteFailedException) Code added in v1.28.0

Code returns the exception type name.

func (*LastDeliveryChannelDeleteFailedException) Error added in v1.28.0

func (LastDeliveryChannelDeleteFailedException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LastDeliveryChannelDeleteFailedException) Message added in v1.28.0

Message returns the exception's message.

func (*LastDeliveryChannelDeleteFailedException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*LastDeliveryChannelDeleteFailedException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*LastDeliveryChannelDeleteFailedException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (LastDeliveryChannelDeleteFailedException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type LimitExceededException added in v1.28.0

type LimitExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

For StartConfigRulesEvaluation API, this exception is thrown if an evaluation is in progress or if you call the StartConfigRulesEvaluation API more than once per minute.

For PutConfigurationAggregator API, this exception is thrown if the number of accounts and aggregators exceeds the limit.

func (*LimitExceededException) Code added in v1.28.0

func (s *LimitExceededException) Code() string

Code returns the exception type name.

func (*LimitExceededException) Error added in v1.28.0

func (s *LimitExceededException) Error() string

func (LimitExceededException) GoString added in v1.28.0

func (s LimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LimitExceededException) Message added in v1.28.0

func (s *LimitExceededException) Message() string

Message returns the exception's message.

func (*LimitExceededException) OrigErr added in v1.28.0

func (s *LimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*LimitExceededException) RequestID added in v1.28.0

func (s *LimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*LimitExceededException) StatusCode added in v1.28.0

func (s *LimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (LimitExceededException) String added in v1.28.0

func (s LimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListAggregateDiscoveredResourcesInput added in v1.15.79

type ListAggregateDiscoveredResourcesInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// Filters the results based on the ResourceFilters object.
	Filters *ResourceFilters `type:"structure"`

	// The maximum number of resource identifiers returned on each page. You cannot
	// specify a number greater than 100. If you specify 0, Config uses the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The type of resources that you want Config to list in the response.
	//
	// ResourceType is a required field
	ResourceType *string `type:"string" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

func (ListAggregateDiscoveredResourcesInput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListAggregateDiscoveredResourcesInput) SetConfigurationAggregatorName added in v1.15.79

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*ListAggregateDiscoveredResourcesInput) SetFilters added in v1.15.79

SetFilters sets the Filters field's value.

func (*ListAggregateDiscoveredResourcesInput) SetLimit added in v1.15.79

SetLimit sets the Limit field's value.

func (*ListAggregateDiscoveredResourcesInput) SetNextToken added in v1.15.79

SetNextToken sets the NextToken field's value.

func (*ListAggregateDiscoveredResourcesInput) SetResourceType added in v1.15.79

SetResourceType sets the ResourceType field's value.

func (ListAggregateDiscoveredResourcesInput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListAggregateDiscoveredResourcesInput) Validate added in v1.15.79

Validate inspects the fields of the type to determine if they are valid.

type ListAggregateDiscoveredResourcesOutput added in v1.15.79

type ListAggregateDiscoveredResourcesOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a list of ResourceIdentifiers objects.
	ResourceIdentifiers []*AggregateResourceIdentifier `type:"list"`
	// contains filtered or unexported fields
}

func (ListAggregateDiscoveredResourcesOutput) GoString added in v1.15.79

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListAggregateDiscoveredResourcesOutput) SetNextToken added in v1.15.79

SetNextToken sets the NextToken field's value.

func (*ListAggregateDiscoveredResourcesOutput) SetResourceIdentifiers added in v1.15.79

SetResourceIdentifiers sets the ResourceIdentifiers field's value.

func (ListAggregateDiscoveredResourcesOutput) String added in v1.15.79

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListConformancePackComplianceScoresInput added in v1.44.64

type ListConformancePackComplianceScoresInput struct {

	// Filters the results based on the ConformancePackComplianceScoresFilters.
	Filters *ConformancePackComplianceScoresFilters `type:"structure"`

	// The maximum number of conformance pack compliance scores returned on each
	// page.
	Limit *int64 `type:"integer"`

	// The nextToken string in a prior request that you can use to get the paginated
	// response for the next set of conformance pack compliance scores.
	NextToken *string `type:"string"`

	// Sorts your conformance pack compliance scores in either ascending or descending
	// order, depending on SortOrder.
	//
	// By default, conformance pack compliance scores are sorted in alphabetical
	// order by name of the conformance pack. Enter SCORE, to sort conformance pack
	// compliance scores by the numerical value of the compliance score.
	SortBy *string `type:"string" enum:"SortBy"`

	// Determines the order in which conformance pack compliance scores are sorted.
	// Either in ascending or descending order.
	//
	// By default, conformance pack compliance scores are sorted in alphabetical
	// order by name of the conformance pack. Conformance pack compliance scores
	// are sorted in reverse alphabetical order if you enter DESCENDING.
	//
	// You can sort conformance pack compliance scores by the numerical value of
	// the compliance score by entering SCORE in the SortBy action. When compliance
	// scores are sorted by SCORE, conformance packs with a compliance score of
	// INSUFFICIENT_DATA will be last when sorting by ascending order and first
	// when sorting by descending order.
	SortOrder *string `type:"string" enum:"SortOrder"`
	// contains filtered or unexported fields
}

func (ListConformancePackComplianceScoresInput) GoString added in v1.44.64

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListConformancePackComplianceScoresInput) SetFilters added in v1.44.64

SetFilters sets the Filters field's value.

func (*ListConformancePackComplianceScoresInput) SetLimit added in v1.44.64

SetLimit sets the Limit field's value.

func (*ListConformancePackComplianceScoresInput) SetNextToken added in v1.44.64

SetNextToken sets the NextToken field's value.

func (*ListConformancePackComplianceScoresInput) SetSortBy added in v1.44.64

SetSortBy sets the SortBy field's value.

func (*ListConformancePackComplianceScoresInput) SetSortOrder added in v1.44.64

SetSortOrder sets the SortOrder field's value.

func (ListConformancePackComplianceScoresInput) String added in v1.44.64

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListConformancePackComplianceScoresInput) Validate added in v1.44.64

Validate inspects the fields of the type to determine if they are valid.

type ListConformancePackComplianceScoresOutput added in v1.44.64

type ListConformancePackComplianceScoresOutput struct {

	// A list of ConformancePackComplianceScore objects.
	//
	// ConformancePackComplianceScores is a required field
	ConformancePackComplianceScores []*ConformancePackComplianceScore `type:"list" required:"true"`

	// The nextToken string that you can use to get the next page of results in
	// a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListConformancePackComplianceScoresOutput) GoString added in v1.44.64

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListConformancePackComplianceScoresOutput) SetConformancePackComplianceScores added in v1.44.64

SetConformancePackComplianceScores sets the ConformancePackComplianceScores field's value.

func (*ListConformancePackComplianceScoresOutput) SetNextToken added in v1.44.64

SetNextToken sets the NextToken field's value.

func (ListConformancePackComplianceScoresOutput) String added in v1.44.64

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListDiscoveredResourcesInput added in v0.9.5

type ListDiscoveredResourcesInput struct {

	// Specifies whether Config includes deleted resources in the results. By default,
	// deleted resources are not included.
	IncludeDeletedResources *bool `locationName:"includeDeletedResources" type:"boolean"`

	// The maximum number of resource identifiers returned on each page. The default
	// is 100. You cannot specify a number greater than 100. If you specify 0, Config
	// uses the default.
	Limit *int64 `locationName:"limit" type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The IDs of only those resources that you want Config to list in the response.
	// If you do not specify this parameter, Config lists all resources of the specified
	// type that it has discovered. You can list a minimum of 1 resourceID and a
	// maximum of 20 resourceIds.
	ResourceIds []*string `locationName:"resourceIds" type:"list"`

	// The custom name of only those resources that you want Config to list in the
	// response. If you do not specify this parameter, Config lists all resources
	// of the specified type that it has discovered.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of resources that you want Config to list in the response.
	//
	// ResourceType is a required field
	ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

func (ListDiscoveredResourcesInput) GoString added in v0.9.5

func (s ListDiscoveredResourcesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDiscoveredResourcesInput) SetIncludeDeletedResources added in v1.5.0

func (s *ListDiscoveredResourcesInput) SetIncludeDeletedResources(v bool) *ListDiscoveredResourcesInput

SetIncludeDeletedResources sets the IncludeDeletedResources field's value.

func (*ListDiscoveredResourcesInput) SetLimit added in v1.5.0

SetLimit sets the Limit field's value.

func (*ListDiscoveredResourcesInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*ListDiscoveredResourcesInput) SetResourceIds added in v1.5.0

SetResourceIds sets the ResourceIds field's value.

func (*ListDiscoveredResourcesInput) SetResourceName added in v1.5.0

SetResourceName sets the ResourceName field's value.

func (*ListDiscoveredResourcesInput) SetResourceType added in v1.5.0

SetResourceType sets the ResourceType field's value.

func (ListDiscoveredResourcesInput) String added in v0.9.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDiscoveredResourcesInput) Validate added in v1.1.21

func (s *ListDiscoveredResourcesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListDiscoveredResourcesOutput added in v0.9.5

type ListDiscoveredResourcesOutput struct {

	// The string that you use in a subsequent request to get the next page of results
	// in a paginated response.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The details that identify a resource that is discovered by Config, including
	// the resource type, ID, and (if available) the custom resource name.
	ResourceIdentifiers []*ResourceIdentifier `locationName:"resourceIdentifiers" type:"list"`
	// contains filtered or unexported fields
}

func (ListDiscoveredResourcesOutput) GoString added in v0.9.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListDiscoveredResourcesOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*ListDiscoveredResourcesOutput) SetResourceIdentifiers added in v1.5.0

SetResourceIdentifiers sets the ResourceIdentifiers field's value.

func (ListDiscoveredResourcesOutput) String added in v0.9.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListResourceEvaluationsInput added in v1.44.147

type ListResourceEvaluationsInput struct {

	// Returns a ResourceEvaluationFilters object.
	Filters *ResourceEvaluationFilters `type:"structure"`

	// The maximum number of evaluations returned on each page. The default is 10.
	// You cannot specify a number greater than 100. If you specify 0, Config uses
	// the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListResourceEvaluationsInput) GoString added in v1.44.147

func (s ListResourceEvaluationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListResourceEvaluationsInput) SetFilters added in v1.44.147

SetFilters sets the Filters field's value.

func (*ListResourceEvaluationsInput) SetLimit added in v1.44.147

SetLimit sets the Limit field's value.

func (*ListResourceEvaluationsInput) SetNextToken added in v1.44.147

SetNextToken sets the NextToken field's value.

func (ListResourceEvaluationsInput) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListResourceEvaluationsInput) Validate added in v1.44.147

func (s *ListResourceEvaluationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListResourceEvaluationsOutput added in v1.44.147

type ListResourceEvaluationsOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns a ResourceEvaluations object.
	ResourceEvaluations []*ResourceEvaluation `type:"list"`
	// contains filtered or unexported fields
}

func (ListResourceEvaluationsOutput) GoString added in v1.44.147

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListResourceEvaluationsOutput) SetNextToken added in v1.44.147

SetNextToken sets the NextToken field's value.

func (*ListResourceEvaluationsOutput) SetResourceEvaluations added in v1.44.147

SetResourceEvaluations sets the ResourceEvaluations field's value.

func (ListResourceEvaluationsOutput) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListStoredQueriesInput added in v1.36.13

type ListStoredQueriesInput struct {

	// The maximum number of results to be returned with a single call.
	MaxResults *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (ListStoredQueriesInput) GoString added in v1.36.13

func (s ListStoredQueriesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListStoredQueriesInput) SetMaxResults added in v1.36.13

SetMaxResults sets the MaxResults field's value.

func (*ListStoredQueriesInput) SetNextToken added in v1.36.13

SetNextToken sets the NextToken field's value.

func (ListStoredQueriesInput) String added in v1.36.13

func (s ListStoredQueriesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListStoredQueriesOutput added in v1.36.13

type ListStoredQueriesOutput struct {

	// If the previous paginated request didn't return all of the remaining results,
	// the response object's NextToken parameter value is set to a token. To retrieve
	// the next set of results, call this action again and assign that token to
	// the request object's NextToken parameter. If there are no remaining results,
	// the previous response object's NextToken parameter is set to null.
	NextToken *string `type:"string"`

	// A list of StoredQueryMetadata objects.
	StoredQueryMetadata []*StoredQueryMetadata `type:"list"`
	// contains filtered or unexported fields
}

func (ListStoredQueriesOutput) GoString added in v1.36.13

func (s ListStoredQueriesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListStoredQueriesOutput) SetNextToken added in v1.36.13

SetNextToken sets the NextToken field's value.

func (*ListStoredQueriesOutput) SetStoredQueryMetadata added in v1.36.13

func (s *ListStoredQueriesOutput) SetStoredQueryMetadata(v []*StoredQueryMetadata) *ListStoredQueriesOutput

SetStoredQueryMetadata sets the StoredQueryMetadata field's value.

func (ListStoredQueriesOutput) String added in v1.36.13

func (s ListStoredQueriesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListTagsForResourceInput added in v1.18.3

type ListTagsForResourceInput struct {

	// The maximum number of tags returned on each page. The limit maximum is 50.
	// You cannot specify a number greater than 50. If you specify 0, Config uses
	// the default.
	Limit *int64 `type:"integer"`

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The Amazon Resource Name (ARN) that identifies the resource for which to
	// list the tags. Currently, the supported resources are ConfigRule, ConfigurationAggregator
	// and AggregatorAuthorization.
	//
	// ResourceArn is a required field
	ResourceArn *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

func (ListTagsForResourceInput) GoString added in v1.18.3

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) SetLimit added in v1.18.3

SetLimit sets the Limit field's value.

func (*ListTagsForResourceInput) SetNextToken added in v1.18.3

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceInput) SetResourceArn added in v1.18.3

SetResourceArn sets the ResourceArn field's value.

func (ListTagsForResourceInput) String added in v1.18.3

func (s ListTagsForResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) Validate added in v1.18.3

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput added in v1.18.3

type ListTagsForResourceOutput struct {

	// The nextToken string returned on a previous page that you use to get the
	// next page of results in a paginated response.
	NextToken *string `type:"string"`

	// The tags for the resource.
	Tags []*Tag `min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString added in v1.18.3

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceOutput) SetNextToken added in v1.18.3

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceOutput) SetTags added in v1.18.3

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String added in v1.18.3

func (s ListTagsForResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxActiveResourcesExceededException added in v1.28.0

type MaxActiveResourcesExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of active custom resource types in your account. There is a limit of 100,000. Delete unused resources using DeleteResourceConfig (https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteResourceConfig.html) .

func (*MaxActiveResourcesExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxActiveResourcesExceededException) Error added in v1.28.0

func (MaxActiveResourcesExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxActiveResourcesExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxActiveResourcesExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxActiveResourcesExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxActiveResourcesExceededException) StatusCode added in v1.28.0

func (s *MaxActiveResourcesExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (MaxActiveResourcesExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfConfigRulesExceededException added in v1.28.0

type MaxNumberOfConfigRulesExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Failed to add the Config rule because the account already contains the maximum number of 1000 rules. Consider deleting any deactivated rules before you add new rules.

func (*MaxNumberOfConfigRulesExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfConfigRulesExceededException) Error added in v1.28.0

func (MaxNumberOfConfigRulesExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfConfigRulesExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfConfigRulesExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfConfigRulesExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfConfigRulesExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfConfigRulesExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfConfigurationRecordersExceededException added in v1.28.0

type MaxNumberOfConfigurationRecordersExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of the number of configuration recorders you can create.

func (*MaxNumberOfConfigurationRecordersExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfConfigurationRecordersExceededException) Error added in v1.28.0

func (MaxNumberOfConfigurationRecordersExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfConfigurationRecordersExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfConfigurationRecordersExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfConfigurationRecordersExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfConfigurationRecordersExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfConfigurationRecordersExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfConformancePacksExceededException added in v1.28.0

type MaxNumberOfConformancePacksExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of the number of conformance packs you can create in an account. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

func (*MaxNumberOfConformancePacksExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfConformancePacksExceededException) Error added in v1.28.0

func (MaxNumberOfConformancePacksExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfConformancePacksExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfConformancePacksExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfConformancePacksExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfConformancePacksExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfConformancePacksExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfDeliveryChannelsExceededException added in v1.28.0

type MaxNumberOfDeliveryChannelsExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of the number of delivery channels you can create.

func (*MaxNumberOfDeliveryChannelsExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfDeliveryChannelsExceededException) Error added in v1.28.0

func (MaxNumberOfDeliveryChannelsExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfDeliveryChannelsExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfDeliveryChannelsExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfDeliveryChannelsExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfDeliveryChannelsExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfDeliveryChannelsExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfOrganizationConfigRulesExceededException added in v1.28.0

type MaxNumberOfOrganizationConfigRulesExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of the number of organization Config rules you can create. For more information, see see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

func (*MaxNumberOfOrganizationConfigRulesExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfOrganizationConfigRulesExceededException) Error added in v1.28.0

func (MaxNumberOfOrganizationConfigRulesExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfOrganizationConfigRulesExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfOrganizationConfigRulesExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfOrganizationConfigRulesExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfOrganizationConfigRulesExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfOrganizationConfigRulesExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfOrganizationConformancePacksExceededException added in v1.28.0

type MaxNumberOfOrganizationConformancePacksExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of the number of organization conformance packs you can create in an account. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

func (*MaxNumberOfOrganizationConformancePacksExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfOrganizationConformancePacksExceededException) Error added in v1.28.0

func (MaxNumberOfOrganizationConformancePacksExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfOrganizationConformancePacksExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfOrganizationConformancePacksExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfOrganizationConformancePacksExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfOrganizationConformancePacksExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfOrganizationConformancePacksExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MaxNumberOfRetentionConfigurationsExceededException added in v1.28.0

type MaxNumberOfRetentionConfigurationsExceededException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Failed to add the retention configuration because a retention configuration with that name already exists.

func (*MaxNumberOfRetentionConfigurationsExceededException) Code added in v1.28.0

Code returns the exception type name.

func (*MaxNumberOfRetentionConfigurationsExceededException) Error added in v1.28.0

func (MaxNumberOfRetentionConfigurationsExceededException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MaxNumberOfRetentionConfigurationsExceededException) Message added in v1.28.0

Message returns the exception's message.

func (*MaxNumberOfRetentionConfigurationsExceededException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*MaxNumberOfRetentionConfigurationsExceededException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*MaxNumberOfRetentionConfigurationsExceededException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (MaxNumberOfRetentionConfigurationsExceededException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type MemberAccountStatus added in v1.20.17

type MemberAccountStatus struct {

	// The 12-digit account ID of a member account.
	//
	// AccountId is a required field
	AccountId *string `type:"string" required:"true"`

	// The name of Config rule deployed in the member account.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// An error code that is returned when Config rule creation or deletion failed
	// in the member account.
	ErrorCode *string `type:"string"`

	// An error message indicating that Config rule account creation or deletion
	// has failed due to an error in the member account.
	ErrorMessage *string `type:"string"`

	// The timestamp of the last status update.
	LastUpdateTime *time.Time `type:"timestamp"`

	// Indicates deployment status for Config rule in the member account. When management
	// account calls PutOrganizationConfigRule action for the first time, Config
	// rule status is created in the member account. When management account calls
	// PutOrganizationConfigRule action for the second time, Config rule status
	// is updated in the member account. Config rule status is deleted when the
	// management account deletes OrganizationConfigRule and disables service access
	// for config-multiaccountsetup.amazonaws.com.
	//
	// Config sets the state of the rule to:
	//
	//    * CREATE_SUCCESSFUL when Config rule has been created in the member account.
	//
	//    * CREATE_IN_PROGRESS when Config rule is being created in the member account.
	//
	//    * CREATE_FAILED when Config rule creation has failed in the member account.
	//
	//    * DELETE_FAILED when Config rule deletion has failed in the member account.
	//
	//    * DELETE_IN_PROGRESS when Config rule is being deleted in the member account.
	//
	//    * DELETE_SUCCESSFUL when Config rule has been deleted in the member account.
	//
	//    * UPDATE_SUCCESSFUL when Config rule has been updated in the member account.
	//
	//    * UPDATE_IN_PROGRESS when Config rule is being updated in the member account.
	//
	//    * UPDATE_FAILED when Config rule deletion has failed in the member account.
	//
	// MemberAccountRuleStatus is a required field
	MemberAccountRuleStatus *string `type:"string" required:"true" enum:"MemberAccountRuleStatus"`
	// contains filtered or unexported fields
}

Organization Config rule creation or deletion status in each member account. This includes the name of the rule, the status, error code and error message when the rule creation or deletion failed.

func (MemberAccountStatus) GoString added in v1.20.17

func (s MemberAccountStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*MemberAccountStatus) SetAccountId added in v1.20.17

func (s *MemberAccountStatus) SetAccountId(v string) *MemberAccountStatus

SetAccountId sets the AccountId field's value.

func (*MemberAccountStatus) SetConfigRuleName added in v1.20.17

func (s *MemberAccountStatus) SetConfigRuleName(v string) *MemberAccountStatus

SetConfigRuleName sets the ConfigRuleName field's value.

func (*MemberAccountStatus) SetErrorCode added in v1.20.17

func (s *MemberAccountStatus) SetErrorCode(v string) *MemberAccountStatus

SetErrorCode sets the ErrorCode field's value.

func (*MemberAccountStatus) SetErrorMessage added in v1.20.17

func (s *MemberAccountStatus) SetErrorMessage(v string) *MemberAccountStatus

SetErrorMessage sets the ErrorMessage field's value.

func (*MemberAccountStatus) SetLastUpdateTime added in v1.20.17

func (s *MemberAccountStatus) SetLastUpdateTime(v time.Time) *MemberAccountStatus

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*MemberAccountStatus) SetMemberAccountRuleStatus added in v1.20.17

func (s *MemberAccountStatus) SetMemberAccountRuleStatus(v string) *MemberAccountStatus

SetMemberAccountRuleStatus sets the MemberAccountRuleStatus field's value.

func (MemberAccountStatus) String added in v1.20.17

func (s MemberAccountStatus) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoAvailableConfigurationRecorderException added in v1.28.0

type NoAvailableConfigurationRecorderException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

There are no configuration recorders available to provide the role needed to describe your resources. Create a configuration recorder.

func (*NoAvailableConfigurationRecorderException) Code added in v1.28.0

Code returns the exception type name.

func (*NoAvailableConfigurationRecorderException) Error added in v1.28.0

func (NoAvailableConfigurationRecorderException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoAvailableConfigurationRecorderException) Message added in v1.28.0

Message returns the exception's message.

func (*NoAvailableConfigurationRecorderException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoAvailableConfigurationRecorderException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoAvailableConfigurationRecorderException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoAvailableConfigurationRecorderException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoAvailableDeliveryChannelException added in v1.28.0

type NoAvailableDeliveryChannelException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

There is no delivery channel available to record configurations.

func (*NoAvailableDeliveryChannelException) Code added in v1.28.0

Code returns the exception type name.

func (*NoAvailableDeliveryChannelException) Error added in v1.28.0

func (NoAvailableDeliveryChannelException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoAvailableDeliveryChannelException) Message added in v1.28.0

Message returns the exception's message.

func (*NoAvailableDeliveryChannelException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoAvailableDeliveryChannelException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoAvailableDeliveryChannelException) StatusCode added in v1.28.0

func (s *NoAvailableDeliveryChannelException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoAvailableDeliveryChannelException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoAvailableOrganizationException added in v1.28.0

type NoAvailableOrganizationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Organization is no longer available.

func (*NoAvailableOrganizationException) Code added in v1.28.0

Code returns the exception type name.

func (*NoAvailableOrganizationException) Error added in v1.28.0

func (NoAvailableOrganizationException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoAvailableOrganizationException) Message added in v1.28.0

Message returns the exception's message.

func (*NoAvailableOrganizationException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoAvailableOrganizationException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoAvailableOrganizationException) StatusCode added in v1.28.0

func (s *NoAvailableOrganizationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoAvailableOrganizationException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoRunningConfigurationRecorderException added in v1.28.0

type NoRunningConfigurationRecorderException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

There is no configuration recorder running.

func (*NoRunningConfigurationRecorderException) Code added in v1.28.0

Code returns the exception type name.

func (*NoRunningConfigurationRecorderException) Error added in v1.28.0

func (NoRunningConfigurationRecorderException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoRunningConfigurationRecorderException) Message added in v1.28.0

Message returns the exception's message.

func (*NoRunningConfigurationRecorderException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoRunningConfigurationRecorderException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoRunningConfigurationRecorderException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoRunningConfigurationRecorderException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchBucketException added in v1.28.0

type NoSuchBucketException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The specified Amazon S3 bucket does not exist.

func (*NoSuchBucketException) Code added in v1.28.0

func (s *NoSuchBucketException) Code() string

Code returns the exception type name.

func (*NoSuchBucketException) Error added in v1.28.0

func (s *NoSuchBucketException) Error() string

func (NoSuchBucketException) GoString added in v1.28.0

func (s NoSuchBucketException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchBucketException) Message added in v1.28.0

func (s *NoSuchBucketException) Message() string

Message returns the exception's message.

func (*NoSuchBucketException) OrigErr added in v1.28.0

func (s *NoSuchBucketException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchBucketException) RequestID added in v1.28.0

func (s *NoSuchBucketException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*NoSuchBucketException) StatusCode added in v1.28.0

func (s *NoSuchBucketException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoSuchBucketException) String added in v1.28.0

func (s NoSuchBucketException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchConfigRuleException added in v1.28.0

type NoSuchConfigRuleException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The Config rule in the request is not valid. Verify that the rule is an Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

func (*NoSuchConfigRuleException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchConfigRuleException) Error added in v1.28.0

func (s *NoSuchConfigRuleException) Error() string

func (NoSuchConfigRuleException) GoString added in v1.28.0

func (s NoSuchConfigRuleException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchConfigRuleException) Message added in v1.28.0

func (s *NoSuchConfigRuleException) Message() string

Message returns the exception's message.

func (*NoSuchConfigRuleException) OrigErr added in v1.28.0

func (s *NoSuchConfigRuleException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchConfigRuleException) RequestID added in v1.28.0

func (s *NoSuchConfigRuleException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*NoSuchConfigRuleException) StatusCode added in v1.28.0

func (s *NoSuchConfigRuleException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoSuchConfigRuleException) String added in v1.28.0

func (s NoSuchConfigRuleException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchConfigRuleInConformancePackException added in v1.28.0

type NoSuchConfigRuleInConformancePackException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Config rule that you passed in the filter does not exist.

func (*NoSuchConfigRuleInConformancePackException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchConfigRuleInConformancePackException) Error added in v1.28.0

func (NoSuchConfigRuleInConformancePackException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchConfigRuleInConformancePackException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchConfigRuleInConformancePackException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchConfigRuleInConformancePackException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchConfigRuleInConformancePackException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoSuchConfigRuleInConformancePackException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchConfigurationAggregatorException added in v1.28.0

type NoSuchConfigurationAggregatorException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a configuration aggregator that does not exist.

func (*NoSuchConfigurationAggregatorException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchConfigurationAggregatorException) Error added in v1.28.0

func (NoSuchConfigurationAggregatorException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchConfigurationAggregatorException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchConfigurationAggregatorException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchConfigurationAggregatorException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchConfigurationAggregatorException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoSuchConfigurationAggregatorException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchConfigurationRecorderException added in v1.28.0

type NoSuchConfigurationRecorderException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a configuration recorder that does not exist.

func (*NoSuchConfigurationRecorderException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchConfigurationRecorderException) Error added in v1.28.0

func (NoSuchConfigurationRecorderException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchConfigurationRecorderException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchConfigurationRecorderException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchConfigurationRecorderException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchConfigurationRecorderException) StatusCode added in v1.28.0

func (s *NoSuchConfigurationRecorderException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoSuchConfigurationRecorderException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchConformancePackException added in v1.28.0

type NoSuchConformancePackException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You specified one or more conformance packs that do not exist.

func (*NoSuchConformancePackException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchConformancePackException) Error added in v1.28.0

func (NoSuchConformancePackException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchConformancePackException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchConformancePackException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchConformancePackException) RequestID added in v1.28.0

func (s *NoSuchConformancePackException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*NoSuchConformancePackException) StatusCode added in v1.28.0

func (s *NoSuchConformancePackException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoSuchConformancePackException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchDeliveryChannelException added in v1.28.0

type NoSuchDeliveryChannelException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a delivery channel that does not exist.

func (*NoSuchDeliveryChannelException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchDeliveryChannelException) Error added in v1.28.0

func (NoSuchDeliveryChannelException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchDeliveryChannelException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchDeliveryChannelException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchDeliveryChannelException) RequestID added in v1.28.0

func (s *NoSuchDeliveryChannelException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*NoSuchDeliveryChannelException) StatusCode added in v1.28.0

func (s *NoSuchDeliveryChannelException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoSuchDeliveryChannelException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchOrganizationConfigRuleException added in v1.28.0

type NoSuchOrganizationConfigRuleException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The Config rule in the request is not valid. Verify that the rule is an organization Config Process Check rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.

func (*NoSuchOrganizationConfigRuleException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchOrganizationConfigRuleException) Error added in v1.28.0

func (NoSuchOrganizationConfigRuleException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchOrganizationConfigRuleException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchOrganizationConfigRuleException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchOrganizationConfigRuleException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchOrganizationConfigRuleException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoSuchOrganizationConfigRuleException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchOrganizationConformancePackException added in v1.28.0

type NoSuchOrganizationConformancePackException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Config organization conformance pack that you passed in the filter does not exist.

For DeleteOrganizationConformancePack, you tried to delete an organization conformance pack that does not exist.

func (*NoSuchOrganizationConformancePackException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchOrganizationConformancePackException) Error added in v1.28.0

func (NoSuchOrganizationConformancePackException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchOrganizationConformancePackException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchOrganizationConformancePackException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchOrganizationConformancePackException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchOrganizationConformancePackException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoSuchOrganizationConformancePackException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchRemediationConfigurationException added in v1.28.0

type NoSuchRemediationConfigurationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You specified an Config rule without a remediation configuration.

func (*NoSuchRemediationConfigurationException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchRemediationConfigurationException) Error added in v1.28.0

func (NoSuchRemediationConfigurationException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchRemediationConfigurationException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchRemediationConfigurationException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchRemediationConfigurationException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchRemediationConfigurationException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoSuchRemediationConfigurationException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchRemediationExceptionException added in v1.28.0

type NoSuchRemediationExceptionException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You tried to delete a remediation exception that does not exist.

func (*NoSuchRemediationExceptionException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchRemediationExceptionException) Error added in v1.28.0

func (NoSuchRemediationExceptionException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchRemediationExceptionException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchRemediationExceptionException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchRemediationExceptionException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchRemediationExceptionException) StatusCode added in v1.28.0

func (s *NoSuchRemediationExceptionException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NoSuchRemediationExceptionException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NoSuchRetentionConfigurationException added in v1.28.0

type NoSuchRetentionConfigurationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a retention configuration that does not exist.

func (*NoSuchRetentionConfigurationException) Code added in v1.28.0

Code returns the exception type name.

func (*NoSuchRetentionConfigurationException) Error added in v1.28.0

func (NoSuchRetentionConfigurationException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NoSuchRetentionConfigurationException) Message added in v1.28.0

Message returns the exception's message.

func (*NoSuchRetentionConfigurationException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NoSuchRetentionConfigurationException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*NoSuchRetentionConfigurationException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (NoSuchRetentionConfigurationException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationAccessDeniedException added in v1.28.0

type OrganizationAccessDeniedException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

For PutConfigurationAggregator API, you can see this exception for the following reasons:

  • No permission to call EnableAWSServiceAccess API

  • The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.

  • You are not a registered delegated administrator for Config with permissions to call ListDelegatedAdministrators API. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.

For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization management account.

func (*OrganizationAccessDeniedException) Code added in v1.28.0

Code returns the exception type name.

func (*OrganizationAccessDeniedException) Error added in v1.28.0

func (OrganizationAccessDeniedException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationAccessDeniedException) Message added in v1.28.0

Message returns the exception's message.

func (*OrganizationAccessDeniedException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*OrganizationAccessDeniedException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*OrganizationAccessDeniedException) StatusCode added in v1.28.0

func (s *OrganizationAccessDeniedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (OrganizationAccessDeniedException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationAggregationSource added in v1.13.28

type OrganizationAggregationSource struct {

	// If true, aggregate existing Config regions and future regions.
	AllAwsRegions *bool `type:"boolean"`

	// The source regions being aggregated.
	AwsRegions []*string `min:"1" type:"list"`

	// ARN of the IAM role used to retrieve Amazon Web Services Organization details
	// associated with the aggregator account.
	//
	// RoleArn is a required field
	RoleArn *string `type:"string" required:"true"`
	// contains filtered or unexported fields
}

This object contains regions to set up the aggregator and an IAM role to retrieve organization details.

func (OrganizationAggregationSource) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationAggregationSource) SetAllAwsRegions added in v1.13.28

SetAllAwsRegions sets the AllAwsRegions field's value.

func (*OrganizationAggregationSource) SetAwsRegions added in v1.13.28

SetAwsRegions sets the AwsRegions field's value.

func (*OrganizationAggregationSource) SetRoleArn added in v1.13.28

SetRoleArn sets the RoleArn field's value.

func (OrganizationAggregationSource) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationAggregationSource) Validate added in v1.13.28

func (s *OrganizationAggregationSource) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OrganizationAllFeaturesNotEnabledException added in v1.28.0

type OrganizationAllFeaturesNotEnabledException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Config resource cannot be created because your organization does not have all features enabled.

func (*OrganizationAllFeaturesNotEnabledException) Code added in v1.28.0

Code returns the exception type name.

func (*OrganizationAllFeaturesNotEnabledException) Error added in v1.28.0

func (OrganizationAllFeaturesNotEnabledException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationAllFeaturesNotEnabledException) Message added in v1.28.0

Message returns the exception's message.

func (*OrganizationAllFeaturesNotEnabledException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*OrganizationAllFeaturesNotEnabledException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*OrganizationAllFeaturesNotEnabledException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (OrganizationAllFeaturesNotEnabledException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationConfigRule added in v1.20.17

type OrganizationConfigRule struct {

	// A comma-separated list of accounts excluded from organization Config rule.
	ExcludedAccounts []*string `type:"list"`

	// The timestamp of the last update.
	LastUpdateTime *time.Time `type:"timestamp"`

	// Amazon Resource Name (ARN) of organization Config rule.
	//
	// OrganizationConfigRuleArn is a required field
	OrganizationConfigRuleArn *string `min:"1" type:"string" required:"true"`

	// The name that you assign to organization Config rule.
	//
	// OrganizationConfigRuleName is a required field
	OrganizationConfigRuleName *string `min:"1" type:"string" required:"true"`

	// An object that specifies metadata for your organization's Config Custom Policy
	// rule. The metadata includes the runtime system in use, which accounts have
	// debug logging enabled, and other custom rule metadata, such as resource type,
	// resource ID of Amazon Web Services resource, and organization trigger types
	// that initiate Config to evaluate Amazon Web Services resources against a
	// rule.
	OrganizationCustomPolicyRuleMetadata *OrganizationCustomPolicyRuleMetadataNoPolicy `type:"structure"`

	// An OrganizationCustomRuleMetadata object.
	OrganizationCustomRuleMetadata *OrganizationCustomRuleMetadata `type:"structure"`

	// An OrganizationManagedRuleMetadata object.
	OrganizationManagedRuleMetadata *OrganizationManagedRuleMetadata `type:"structure"`
	// contains filtered or unexported fields
}

An organization Config rule that has information about Config rules that Config creates in member accounts.

func (OrganizationConfigRule) GoString added in v1.20.17

func (s OrganizationConfigRule) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationConfigRule) SetExcludedAccounts added in v1.20.17

func (s *OrganizationConfigRule) SetExcludedAccounts(v []*string) *OrganizationConfigRule

SetExcludedAccounts sets the ExcludedAccounts field's value.

func (*OrganizationConfigRule) SetLastUpdateTime added in v1.20.17

func (s *OrganizationConfigRule) SetLastUpdateTime(v time.Time) *OrganizationConfigRule

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*OrganizationConfigRule) SetOrganizationConfigRuleArn added in v1.20.17

func (s *OrganizationConfigRule) SetOrganizationConfigRuleArn(v string) *OrganizationConfigRule

SetOrganizationConfigRuleArn sets the OrganizationConfigRuleArn field's value.

func (*OrganizationConfigRule) SetOrganizationConfigRuleName added in v1.20.17

func (s *OrganizationConfigRule) SetOrganizationConfigRuleName(v string) *OrganizationConfigRule

SetOrganizationConfigRuleName sets the OrganizationConfigRuleName field's value.

func (*OrganizationConfigRule) SetOrganizationCustomPolicyRuleMetadata added in v1.43.25

func (s *OrganizationConfigRule) SetOrganizationCustomPolicyRuleMetadata(v *OrganizationCustomPolicyRuleMetadataNoPolicy) *OrganizationConfigRule

SetOrganizationCustomPolicyRuleMetadata sets the OrganizationCustomPolicyRuleMetadata field's value.

func (*OrganizationConfigRule) SetOrganizationCustomRuleMetadata added in v1.20.17

func (s *OrganizationConfigRule) SetOrganizationCustomRuleMetadata(v *OrganizationCustomRuleMetadata) *OrganizationConfigRule

SetOrganizationCustomRuleMetadata sets the OrganizationCustomRuleMetadata field's value.

func (*OrganizationConfigRule) SetOrganizationManagedRuleMetadata added in v1.20.17

func (s *OrganizationConfigRule) SetOrganizationManagedRuleMetadata(v *OrganizationManagedRuleMetadata) *OrganizationConfigRule

SetOrganizationManagedRuleMetadata sets the OrganizationManagedRuleMetadata field's value.

func (OrganizationConfigRule) String added in v1.20.17

func (s OrganizationConfigRule) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationConfigRuleStatus added in v1.20.17

type OrganizationConfigRuleStatus struct {

	// An error code that is returned when organization Config rule creation or
	// deletion has failed.
	ErrorCode *string `type:"string"`

	// An error message indicating that organization Config rule creation or deletion
	// failed due to an error.
	ErrorMessage *string `type:"string"`

	// The timestamp of the last update.
	LastUpdateTime *time.Time `type:"timestamp"`

	// The name that you assign to organization Config rule.
	//
	// OrganizationConfigRuleName is a required field
	OrganizationConfigRuleName *string `min:"1" type:"string" required:"true"`

	// Indicates deployment status of an organization Config rule. When management
	// account calls PutOrganizationConfigRule action for the first time, Config
	// rule status is created in all the member accounts. When management account
	// calls PutOrganizationConfigRule action for the second time, Config rule status
	// is updated in all the member accounts. Additionally, Config rule status is
	// updated when one or more member accounts join or leave an organization. Config
	// rule status is deleted when the management account deletes OrganizationConfigRule
	// in all the member accounts and disables service access for config-multiaccountsetup.amazonaws.com.
	//
	// Config sets the state of the rule to:
	//
	//    * CREATE_SUCCESSFUL when an organization Config rule has been successfully
	//    created in all the member accounts.
	//
	//    * CREATE_IN_PROGRESS when an organization Config rule creation is in progress.
	//
	//    * CREATE_FAILED when an organization Config rule creation failed in one
	//    or more member accounts within that organization.
	//
	//    * DELETE_FAILED when an organization Config rule deletion failed in one
	//    or more member accounts within that organization.
	//
	//    * DELETE_IN_PROGRESS when an organization Config rule deletion is in progress.
	//
	//    * DELETE_SUCCESSFUL when an organization Config rule has been successfully
	//    deleted from all the member accounts.
	//
	//    * UPDATE_SUCCESSFUL when an organization Config rule has been successfully
	//    updated in all the member accounts.
	//
	//    * UPDATE_IN_PROGRESS when an organization Config rule update is in progress.
	//
	//    * UPDATE_FAILED when an organization Config rule update failed in one
	//    or more member accounts within that organization.
	//
	// OrganizationRuleStatus is a required field
	OrganizationRuleStatus *string `type:"string" required:"true" enum:"OrganizationRuleStatus"`
	// contains filtered or unexported fields
}

Returns the status for an organization Config rule in an organization.

func (OrganizationConfigRuleStatus) GoString added in v1.20.17

func (s OrganizationConfigRuleStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationConfigRuleStatus) SetErrorCode added in v1.20.17

SetErrorCode sets the ErrorCode field's value.

func (*OrganizationConfigRuleStatus) SetErrorMessage added in v1.20.17

SetErrorMessage sets the ErrorMessage field's value.

func (*OrganizationConfigRuleStatus) SetLastUpdateTime added in v1.20.17

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*OrganizationConfigRuleStatus) SetOrganizationConfigRuleName added in v1.20.17

func (s *OrganizationConfigRuleStatus) SetOrganizationConfigRuleName(v string) *OrganizationConfigRuleStatus

SetOrganizationConfigRuleName sets the OrganizationConfigRuleName field's value.

func (*OrganizationConfigRuleStatus) SetOrganizationRuleStatus added in v1.20.17

func (s *OrganizationConfigRuleStatus) SetOrganizationRuleStatus(v string) *OrganizationConfigRuleStatus

SetOrganizationRuleStatus sets the OrganizationRuleStatus field's value.

func (OrganizationConfigRuleStatus) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationConformancePack added in v1.25.38

type OrganizationConformancePack struct {

	// A list of ConformancePackInputParameter objects.
	ConformancePackInputParameters []*ConformancePackInputParameter `type:"list"`

	// The name of the Amazon S3 bucket where Config stores conformance pack templates.
	//
	// This field is optional.
	DeliveryS3Bucket *string `type:"string"`

	// Any folder structure you want to add to an Amazon S3 bucket.
	//
	// This field is optional.
	DeliveryS3KeyPrefix *string `type:"string"`

	// A comma-separated list of accounts excluded from organization conformance
	// pack.
	ExcludedAccounts []*string `type:"list"`

	// Last time when organization conformation pack was updated.
	//
	// LastUpdateTime is a required field
	LastUpdateTime *time.Time `type:"timestamp" required:"true"`

	// Amazon Resource Name (ARN) of organization conformance pack.
	//
	// OrganizationConformancePackArn is a required field
	OrganizationConformancePackArn *string `min:"1" type:"string" required:"true"`

	// The name you assign to an organization conformance pack.
	//
	// OrganizationConformancePackName is a required field
	OrganizationConformancePackName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An organization conformance pack that has information about conformance packs that Config creates in member accounts.

func (OrganizationConformancePack) GoString added in v1.25.38

func (s OrganizationConformancePack) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationConformancePack) SetConformancePackInputParameters added in v1.25.38

SetConformancePackInputParameters sets the ConformancePackInputParameters field's value.

func (*OrganizationConformancePack) SetDeliveryS3Bucket added in v1.25.38

SetDeliveryS3Bucket sets the DeliveryS3Bucket field's value.

func (*OrganizationConformancePack) SetDeliveryS3KeyPrefix added in v1.25.38

func (s *OrganizationConformancePack) SetDeliveryS3KeyPrefix(v string) *OrganizationConformancePack

SetDeliveryS3KeyPrefix sets the DeliveryS3KeyPrefix field's value.

func (*OrganizationConformancePack) SetExcludedAccounts added in v1.25.38

func (s *OrganizationConformancePack) SetExcludedAccounts(v []*string) *OrganizationConformancePack

SetExcludedAccounts sets the ExcludedAccounts field's value.

func (*OrganizationConformancePack) SetLastUpdateTime added in v1.25.38

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*OrganizationConformancePack) SetOrganizationConformancePackArn added in v1.25.38

func (s *OrganizationConformancePack) SetOrganizationConformancePackArn(v string) *OrganizationConformancePack

SetOrganizationConformancePackArn sets the OrganizationConformancePackArn field's value.

func (*OrganizationConformancePack) SetOrganizationConformancePackName added in v1.25.38

func (s *OrganizationConformancePack) SetOrganizationConformancePackName(v string) *OrganizationConformancePack

SetOrganizationConformancePackName sets the OrganizationConformancePackName field's value.

func (OrganizationConformancePack) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationConformancePackDetailedStatus added in v1.25.38

type OrganizationConformancePackDetailedStatus struct {

	// The 12-digit account ID of a member account.
	//
	// AccountId is a required field
	AccountId *string `type:"string" required:"true"`

	// The name of conformance pack deployed in the member account.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// An error code that is returned when conformance pack creation or deletion
	// failed in the member account.
	ErrorCode *string `type:"string"`

	// An error message indicating that conformance pack account creation or deletion
	// has failed due to an error in the member account.
	ErrorMessage *string `type:"string"`

	// The timestamp of the last status update.
	LastUpdateTime *time.Time `type:"timestamp"`

	// Indicates deployment status for conformance pack in a member account. When
	// management account calls PutOrganizationConformancePack action for the first
	// time, conformance pack status is created in the member account. When management
	// account calls PutOrganizationConformancePack action for the second time,
	// conformance pack status is updated in the member account. Conformance pack
	// status is deleted when the management account deletes OrganizationConformancePack
	// and disables service access for config-multiaccountsetup.amazonaws.com.
	//
	// Config sets the state of the conformance pack to:
	//
	//    * CREATE_SUCCESSFUL when conformance pack has been created in the member
	//    account.
	//
	//    * CREATE_IN_PROGRESS when conformance pack is being created in the member
	//    account.
	//
	//    * CREATE_FAILED when conformance pack creation has failed in the member
	//    account.
	//
	//    * DELETE_FAILED when conformance pack deletion has failed in the member
	//    account.
	//
	//    * DELETE_IN_PROGRESS when conformance pack is being deleted in the member
	//    account.
	//
	//    * DELETE_SUCCESSFUL when conformance pack has been deleted in the member
	//    account.
	//
	//    * UPDATE_SUCCESSFUL when conformance pack has been updated in the member
	//    account.
	//
	//    * UPDATE_IN_PROGRESS when conformance pack is being updated in the member
	//    account.
	//
	//    * UPDATE_FAILED when conformance pack deletion has failed in the member
	//    account.
	//
	// Status is a required field
	Status *string `type:"string" required:"true" enum:"OrganizationResourceDetailedStatus"`
	// contains filtered or unexported fields
}

Organization conformance pack creation or deletion status in each member account. This includes the name of the conformance pack, the status, error code and error message when the conformance pack creation or deletion failed.

func (OrganizationConformancePackDetailedStatus) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationConformancePackDetailedStatus) SetAccountId added in v1.25.38

SetAccountId sets the AccountId field's value.

func (*OrganizationConformancePackDetailedStatus) SetConformancePackName added in v1.25.38

SetConformancePackName sets the ConformancePackName field's value.

func (*OrganizationConformancePackDetailedStatus) SetErrorCode added in v1.25.38

SetErrorCode sets the ErrorCode field's value.

func (*OrganizationConformancePackDetailedStatus) SetErrorMessage added in v1.25.38

SetErrorMessage sets the ErrorMessage field's value.

func (*OrganizationConformancePackDetailedStatus) SetLastUpdateTime added in v1.25.38

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*OrganizationConformancePackDetailedStatus) SetStatus added in v1.25.38

SetStatus sets the Status field's value.

func (OrganizationConformancePackDetailedStatus) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationConformancePackStatus added in v1.25.38

type OrganizationConformancePackStatus struct {

	// An error code that is returned when organization conformance pack creation
	// or deletion has failed in a member account.
	ErrorCode *string `type:"string"`

	// An error message indicating that organization conformance pack creation or
	// deletion failed due to an error.
	ErrorMessage *string `type:"string"`

	// The timestamp of the last update.
	LastUpdateTime *time.Time `type:"timestamp"`

	// The name that you assign to organization conformance pack.
	//
	// OrganizationConformancePackName is a required field
	OrganizationConformancePackName *string `min:"1" type:"string" required:"true"`

	// Indicates deployment status of an organization conformance pack. When management
	// account calls PutOrganizationConformancePack for the first time, conformance
	// pack status is created in all the member accounts. When management account
	// calls PutOrganizationConformancePack for the second time, conformance pack
	// status is updated in all the member accounts. Additionally, conformance pack
	// status is updated when one or more member accounts join or leave an organization.
	// Conformance pack status is deleted when the management account deletes OrganizationConformancePack
	// in all the member accounts and disables service access for config-multiaccountsetup.amazonaws.com.
	//
	// Config sets the state of the conformance pack to:
	//
	//    * CREATE_SUCCESSFUL when an organization conformance pack has been successfully
	//    created in all the member accounts.
	//
	//    * CREATE_IN_PROGRESS when an organization conformance pack creation is
	//    in progress.
	//
	//    * CREATE_FAILED when an organization conformance pack creation failed
	//    in one or more member accounts within that organization.
	//
	//    * DELETE_FAILED when an organization conformance pack deletion failed
	//    in one or more member accounts within that organization.
	//
	//    * DELETE_IN_PROGRESS when an organization conformance pack deletion is
	//    in progress.
	//
	//    * DELETE_SUCCESSFUL when an organization conformance pack has been successfully
	//    deleted from all the member accounts.
	//
	//    * UPDATE_SUCCESSFUL when an organization conformance pack has been successfully
	//    updated in all the member accounts.
	//
	//    * UPDATE_IN_PROGRESS when an organization conformance pack update is in
	//    progress.
	//
	//    * UPDATE_FAILED when an organization conformance pack update failed in
	//    one or more member accounts within that organization.
	//
	// Status is a required field
	Status *string `type:"string" required:"true" enum:"OrganizationResourceStatus"`
	// contains filtered or unexported fields
}

Returns the status for an organization conformance pack in an organization.

func (OrganizationConformancePackStatus) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationConformancePackStatus) SetErrorCode added in v1.25.38

SetErrorCode sets the ErrorCode field's value.

func (*OrganizationConformancePackStatus) SetErrorMessage added in v1.25.38

SetErrorMessage sets the ErrorMessage field's value.

func (*OrganizationConformancePackStatus) SetLastUpdateTime added in v1.25.38

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*OrganizationConformancePackStatus) SetOrganizationConformancePackName added in v1.25.38

func (s *OrganizationConformancePackStatus) SetOrganizationConformancePackName(v string) *OrganizationConformancePackStatus

SetOrganizationConformancePackName sets the OrganizationConformancePackName field's value.

func (*OrganizationConformancePackStatus) SetStatus added in v1.25.38

SetStatus sets the Status field's value.

func (OrganizationConformancePackStatus) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationConformancePackTemplateValidationException added in v1.28.0

type OrganizationConformancePackTemplateValidationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a template that is not valid or supported.

func (*OrganizationConformancePackTemplateValidationException) Code added in v1.28.0

Code returns the exception type name.

func (*OrganizationConformancePackTemplateValidationException) Error added in v1.28.0

func (OrganizationConformancePackTemplateValidationException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationConformancePackTemplateValidationException) Message added in v1.28.0

Message returns the exception's message.

func (*OrganizationConformancePackTemplateValidationException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*OrganizationConformancePackTemplateValidationException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*OrganizationConformancePackTemplateValidationException) StatusCode added in v1.28.0

Status code returns the HTTP status code for the request's response error.

func (OrganizationConformancePackTemplateValidationException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationCustomPolicyRuleMetadata added in v1.43.25

type OrganizationCustomPolicyRuleMetadata struct {

	// A list of accounts that you can enable debug logging for your organization
	// Config Custom Policy rule. List is null when debug logging is enabled for
	// all accounts.
	DebugLogDeliveryAccounts []*string `type:"list"`

	// The description that you provide for your organization Config Custom Policy
	// rule.
	Description *string `type:"string"`

	// A string, in JSON format, that is passed to your organization Config Custom
	// Policy rule.
	InputParameters *string `min:"1" type:"string"`

	// The maximum frequency with which Config runs evaluations for a rule. Your
	// Config Custom Policy rule is triggered when Config delivers the configuration
	// snapshot. For more information, see ConfigSnapshotDeliveryProperties.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// The type of notification that initiates Config to run an evaluation for a
	// rule. For Config Custom Policy rules, Config supports change-initiated notification
	// types:
	//
	//    * ConfigurationItemChangeNotification - Initiates an evaluation when Config
	//    delivers a configuration item as a result of a resource change.
	//
	//    * OversizedConfigurationItemChangeNotification - Initiates an evaluation
	//    when Config delivers an oversized configuration item. Config may generate
	//    this notification type when a resource changes and the notification exceeds
	//    the maximum size allowed by Amazon SNS.
	OrganizationConfigRuleTriggerTypes []*string `type:"list" enum:"OrganizationConfigRuleTriggerTypeNoSN"`

	// The runtime system for your organization Config Custom Policy rules. Guard
	// is a policy-as-code language that allows you to write policies that are enforced
	// by Config Custom Policy rules. For more information about Guard, see the
	// Guard GitHub Repository (https://github.com/aws-cloudformation/cloudformation-guard).
	//
	// PolicyRuntime is a required field
	PolicyRuntime *string `min:"1" type:"string" required:"true"`

	// The policy definition containing the logic for your organization Config Custom
	// Policy rule.
	//
	// PolicyText is a required field
	PolicyText *string `type:"string" required:"true"`

	// The ID of the Amazon Web Services resource that was evaluated.
	ResourceIdScope *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource that was evaluated.
	ResourceTypesScope []*string `type:"list"`

	// One part of a key-value pair that make up a tag. A key is a general label
	// that acts like a category for more specific tag values.
	TagKeyScope *string `min:"1" type:"string"`

	// The optional part of a key-value pair that make up a tag. A value acts as
	// a descriptor within a tag category (key).
	TagValueScope *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object that specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have debug logging enabled, and other custom rule metadata, such as resource type, resource ID of Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule.

func (OrganizationCustomPolicyRuleMetadata) GoString added in v1.43.25

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationCustomPolicyRuleMetadata) SetDebugLogDeliveryAccounts added in v1.43.25

SetDebugLogDeliveryAccounts sets the DebugLogDeliveryAccounts field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetDescription added in v1.43.25

SetDescription sets the Description field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetInputParameters added in v1.43.25

SetInputParameters sets the InputParameters field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetMaximumExecutionFrequency added in v1.43.25

SetMaximumExecutionFrequency sets the MaximumExecutionFrequency field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetOrganizationConfigRuleTriggerTypes added in v1.43.25

func (s *OrganizationCustomPolicyRuleMetadata) SetOrganizationConfigRuleTriggerTypes(v []*string) *OrganizationCustomPolicyRuleMetadata

SetOrganizationConfigRuleTriggerTypes sets the OrganizationConfigRuleTriggerTypes field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetPolicyRuntime added in v1.43.25

SetPolicyRuntime sets the PolicyRuntime field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetPolicyText added in v1.43.25

SetPolicyText sets the PolicyText field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetResourceIdScope added in v1.43.25

SetResourceIdScope sets the ResourceIdScope field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetResourceTypesScope added in v1.43.25

SetResourceTypesScope sets the ResourceTypesScope field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetTagKeyScope added in v1.43.25

SetTagKeyScope sets the TagKeyScope field's value.

func (*OrganizationCustomPolicyRuleMetadata) SetTagValueScope added in v1.43.25

SetTagValueScope sets the TagValueScope field's value.

func (OrganizationCustomPolicyRuleMetadata) String added in v1.43.25

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationCustomPolicyRuleMetadata) Validate added in v1.43.25

Validate inspects the fields of the type to determine if they are valid.

type OrganizationCustomPolicyRuleMetadataNoPolicy added in v1.43.25

type OrganizationCustomPolicyRuleMetadataNoPolicy struct {

	// A list of accounts that you can enable debug logging for your organization
	// Config Custom Policy rule. List is null when debug logging is enabled for
	// all accounts.
	DebugLogDeliveryAccounts []*string `type:"list"`

	// The description that you provide for your organization Config Custom Policy
	// rule.
	Description *string `type:"string"`

	// A string, in JSON format, that is passed to your organization Config Custom
	// Policy rule.
	InputParameters *string `min:"1" type:"string"`

	// The maximum frequency with which Config runs evaluations for a rule. Your
	// Config Custom Policy rule is triggered when Config delivers the configuration
	// snapshot. For more information, see ConfigSnapshotDeliveryProperties.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// The type of notification that triggers Config to run an evaluation for a
	// rule. For Config Custom Policy rules, Config supports change triggered notification
	// types:
	//
	//    * ConfigurationItemChangeNotification - Triggers an evaluation when Config
	//    delivers a configuration item as a result of a resource change.
	//
	//    * OversizedConfigurationItemChangeNotification - Triggers an evaluation
	//    when Config delivers an oversized configuration item. Config may generate
	//    this notification type when a resource changes and the notification exceeds
	//    the maximum size allowed by Amazon SNS.
	OrganizationConfigRuleTriggerTypes []*string `type:"list" enum:"OrganizationConfigRuleTriggerTypeNoSN"`

	// The runtime system for your organization Config Custom Policy rules. Guard
	// is a policy-as-code language that allows you to write policies that are enforced
	// by Config Custom Policy rules. For more information about Guard, see the
	// Guard GitHub Repository (https://github.com/aws-cloudformation/cloudformation-guard).
	PolicyRuntime *string `min:"1" type:"string"`

	// The ID of the Amazon Web Services resource that was evaluated.
	ResourceIdScope *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource that was evaluated.
	ResourceTypesScope []*string `type:"list"`

	// One part of a key-value pair that make up a tag. A key is a general label
	// that acts like a category for more specific tag values.
	TagKeyScope *string `min:"1" type:"string"`

	// The optional part of a key-value pair that make up a tag. A value acts as
	// a descriptor within a tag category (key).
	TagValueScope *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

metadata for your organization Config Custom Policy rule including the runtime system in use, which accounts have debug logging enabled, and other custom rule metadata such as resource type, resource ID of Amazon Web Services resource, and organization trigger types that trigger Config to evaluate Amazon Web Services resources against a rule.

func (OrganizationCustomPolicyRuleMetadataNoPolicy) GoString added in v1.43.25

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetDebugLogDeliveryAccounts added in v1.43.25

SetDebugLogDeliveryAccounts sets the DebugLogDeliveryAccounts field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetDescription added in v1.43.25

SetDescription sets the Description field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetInputParameters added in v1.43.25

SetInputParameters sets the InputParameters field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetMaximumExecutionFrequency added in v1.43.25

SetMaximumExecutionFrequency sets the MaximumExecutionFrequency field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetOrganizationConfigRuleTriggerTypes added in v1.43.25

SetOrganizationConfigRuleTriggerTypes sets the OrganizationConfigRuleTriggerTypes field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetPolicyRuntime added in v1.43.25

SetPolicyRuntime sets the PolicyRuntime field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetResourceIdScope added in v1.43.25

SetResourceIdScope sets the ResourceIdScope field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetResourceTypesScope added in v1.43.25

SetResourceTypesScope sets the ResourceTypesScope field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetTagKeyScope added in v1.43.25

SetTagKeyScope sets the TagKeyScope field's value.

func (*OrganizationCustomPolicyRuleMetadataNoPolicy) SetTagValueScope added in v1.43.25

SetTagValueScope sets the TagValueScope field's value.

func (OrganizationCustomPolicyRuleMetadataNoPolicy) String added in v1.43.25

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OrganizationCustomRuleMetadata added in v1.20.17

type OrganizationCustomRuleMetadata struct {

	// The description that you provide for your organization Config rule.
	Description *string `type:"string"`

	// A string, in JSON format, that is passed to your organization Config rule
	// Lambda function.
	InputParameters *string `min:"1" type:"string"`

	// The lambda function ARN.
	//
	// LambdaFunctionArn is a required field
	LambdaFunctionArn *string `min:"1" type:"string" required:"true"`

	// The maximum frequency with which Config runs evaluations for a rule. Your
	// custom rule is triggered when Config delivers the configuration snapshot.
	// For more information, see ConfigSnapshotDeliveryProperties.
	//
	// By default, rules with a periodic trigger are evaluated every 24 hours. To
	// change the frequency, specify a valid value for the MaximumExecutionFrequency
	// parameter.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// The type of notification that triggers Config to run an evaluation for a
	// rule. You can specify the following notification types:
	//
	//    * ConfigurationItemChangeNotification - Triggers an evaluation when Config
	//    delivers a configuration item as a result of a resource change.
	//
	//    * OversizedConfigurationItemChangeNotification - Triggers an evaluation
	//    when Config delivers an oversized configuration item. Config may generate
	//    this notification type when a resource changes and the notification exceeds
	//    the maximum size allowed by Amazon SNS.
	//
	//    * ScheduledNotification - Triggers a periodic evaluation at the frequency
	//    specified for MaximumExecutionFrequency.
	//
	// OrganizationConfigRuleTriggerTypes is a required field
	OrganizationConfigRuleTriggerTypes []*string `type:"list" required:"true" enum:"OrganizationConfigRuleTriggerType"`

	// The ID of the Amazon Web Services resource that was evaluated.
	ResourceIdScope *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource that was evaluated.
	ResourceTypesScope []*string `type:"list"`

	// One part of a key-value pair that make up a tag. A key is a general label
	// that acts like a category for more specific tag values.
	TagKeyScope *string `min:"1" type:"string"`

	// The optional part of a key-value pair that make up a tag. A value acts as
	// a descriptor within a tag category (key).
	TagValueScope *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object that specifies organization custom rule metadata such as resource type, resource ID of Amazon Web Services resource, Lambda function ARN, and organization trigger types that trigger Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.

func (OrganizationCustomRuleMetadata) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationCustomRuleMetadata) SetDescription added in v1.20.17

SetDescription sets the Description field's value.

func (*OrganizationCustomRuleMetadata) SetInputParameters added in v1.20.17

SetInputParameters sets the InputParameters field's value.

func (*OrganizationCustomRuleMetadata) SetLambdaFunctionArn added in v1.20.17

SetLambdaFunctionArn sets the LambdaFunctionArn field's value.

func (*OrganizationCustomRuleMetadata) SetMaximumExecutionFrequency added in v1.20.17

func (s *OrganizationCustomRuleMetadata) SetMaximumExecutionFrequency(v string) *OrganizationCustomRuleMetadata

SetMaximumExecutionFrequency sets the MaximumExecutionFrequency field's value.

func (*OrganizationCustomRuleMetadata) SetOrganizationConfigRuleTriggerTypes added in v1.20.17

func (s *OrganizationCustomRuleMetadata) SetOrganizationConfigRuleTriggerTypes(v []*string) *OrganizationCustomRuleMetadata

SetOrganizationConfigRuleTriggerTypes sets the OrganizationConfigRuleTriggerTypes field's value.

func (*OrganizationCustomRuleMetadata) SetResourceIdScope added in v1.20.17

SetResourceIdScope sets the ResourceIdScope field's value.

func (*OrganizationCustomRuleMetadata) SetResourceTypesScope added in v1.20.17

SetResourceTypesScope sets the ResourceTypesScope field's value.

func (*OrganizationCustomRuleMetadata) SetTagKeyScope added in v1.20.17

SetTagKeyScope sets the TagKeyScope field's value.

func (*OrganizationCustomRuleMetadata) SetTagValueScope added in v1.20.17

SetTagValueScope sets the TagValueScope field's value.

func (OrganizationCustomRuleMetadata) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationCustomRuleMetadata) Validate added in v1.20.17

func (s *OrganizationCustomRuleMetadata) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OrganizationManagedRuleMetadata added in v1.20.17

type OrganizationManagedRuleMetadata struct {

	// The description that you provide for your organization Config rule.
	Description *string `type:"string"`

	// A string, in JSON format, that is passed to your organization Config rule
	// Lambda function.
	InputParameters *string `min:"1" type:"string"`

	// The maximum frequency with which Config runs evaluations for a rule. This
	// is for an Config managed rule that is triggered at a periodic frequency.
	//
	// By default, rules with a periodic trigger are evaluated every 24 hours. To
	// change the frequency, specify a valid value for the MaximumExecutionFrequency
	// parameter.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// The ID of the Amazon Web Services resource that was evaluated.
	ResourceIdScope *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource that was evaluated.
	ResourceTypesScope []*string `type:"list"`

	// For organization config managed rules, a predefined identifier from a list.
	// For example, IAM_PASSWORD_POLICY is a managed rule. To reference a managed
	// rule, see Using Config managed rules (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_use-managed-rules.html).
	//
	// RuleIdentifier is a required field
	RuleIdentifier *string `min:"1" type:"string" required:"true"`

	// One part of a key-value pair that make up a tag. A key is a general label
	// that acts like a category for more specific tag values.
	TagKeyScope *string `min:"1" type:"string"`

	// The optional part of a key-value pair that make up a tag. A value acts as
	// a descriptor within a tag category (key).
	TagValueScope *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object that specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.

func (OrganizationManagedRuleMetadata) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationManagedRuleMetadata) SetDescription added in v1.20.17

SetDescription sets the Description field's value.

func (*OrganizationManagedRuleMetadata) SetInputParameters added in v1.20.17

SetInputParameters sets the InputParameters field's value.

func (*OrganizationManagedRuleMetadata) SetMaximumExecutionFrequency added in v1.20.17

func (s *OrganizationManagedRuleMetadata) SetMaximumExecutionFrequency(v string) *OrganizationManagedRuleMetadata

SetMaximumExecutionFrequency sets the MaximumExecutionFrequency field's value.

func (*OrganizationManagedRuleMetadata) SetResourceIdScope added in v1.20.17

SetResourceIdScope sets the ResourceIdScope field's value.

func (*OrganizationManagedRuleMetadata) SetResourceTypesScope added in v1.20.17

SetResourceTypesScope sets the ResourceTypesScope field's value.

func (*OrganizationManagedRuleMetadata) SetRuleIdentifier added in v1.20.17

SetRuleIdentifier sets the RuleIdentifier field's value.

func (*OrganizationManagedRuleMetadata) SetTagKeyScope added in v1.20.17

SetTagKeyScope sets the TagKeyScope field's value.

func (*OrganizationManagedRuleMetadata) SetTagValueScope added in v1.20.17

SetTagValueScope sets the TagValueScope field's value.

func (OrganizationManagedRuleMetadata) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationManagedRuleMetadata) Validate added in v1.20.17

func (s *OrganizationManagedRuleMetadata) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type OrganizationResourceDetailedStatusFilters added in v1.25.38

type OrganizationResourceDetailedStatusFilters struct {

	// The 12-digit account ID of the member account within an organization.
	AccountId *string `type:"string"`

	// Indicates deployment status for conformance pack in a member account. When
	// management account calls PutOrganizationConformancePack action for the first
	// time, conformance pack status is created in the member account. When management
	// account calls PutOrganizationConformancePack action for the second time,
	// conformance pack status is updated in the member account. Conformance pack
	// status is deleted when the management account deletes OrganizationConformancePack
	// and disables service access for config-multiaccountsetup.amazonaws.com.
	//
	// Config sets the state of the conformance pack to:
	//
	//    * CREATE_SUCCESSFUL when conformance pack has been created in the member
	//    account.
	//
	//    * CREATE_IN_PROGRESS when conformance pack is being created in the member
	//    account.
	//
	//    * CREATE_FAILED when conformance pack creation has failed in the member
	//    account.
	//
	//    * DELETE_FAILED when conformance pack deletion has failed in the member
	//    account.
	//
	//    * DELETE_IN_PROGRESS when conformance pack is being deleted in the member
	//    account.
	//
	//    * DELETE_SUCCESSFUL when conformance pack has been deleted in the member
	//    account.
	//
	//    * UPDATE_SUCCESSFUL when conformance pack has been updated in the member
	//    account.
	//
	//    * UPDATE_IN_PROGRESS when conformance pack is being updated in the member
	//    account.
	//
	//    * UPDATE_FAILED when conformance pack deletion has failed in the member
	//    account.
	Status *string `type:"string" enum:"OrganizationResourceDetailedStatus"`
	// contains filtered or unexported fields
}

Status filter object to filter results based on specific member account ID or status type for an organization conformance pack.

func (OrganizationResourceDetailedStatusFilters) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OrganizationResourceDetailedStatusFilters) SetAccountId added in v1.25.38

SetAccountId sets the AccountId field's value.

func (*OrganizationResourceDetailedStatusFilters) SetStatus added in v1.25.38

SetStatus sets the Status field's value.

func (OrganizationResourceDetailedStatusFilters) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OversizedConfigurationItemException added in v1.28.0

type OversizedConfigurationItemException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The configuration item size is outside the allowable range.

func (*OversizedConfigurationItemException) Code added in v1.28.0

Code returns the exception type name.

func (*OversizedConfigurationItemException) Error added in v1.28.0

func (OversizedConfigurationItemException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OversizedConfigurationItemException) Message added in v1.28.0

Message returns the exception's message.

func (*OversizedConfigurationItemException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*OversizedConfigurationItemException) RequestID added in v1.28.0

RequestID returns the service's response RequestID for request.

func (*OversizedConfigurationItemException) StatusCode added in v1.28.0

func (s *OversizedConfigurationItemException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (OversizedConfigurationItemException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PendingAggregationRequest added in v1.13.28

type PendingAggregationRequest struct {

	// The 12-digit account ID of the account requesting to aggregate data.
	RequesterAccountId *string `type:"string"`

	// The region requesting to aggregate data.
	RequesterAwsRegion *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

An object that represents the account ID and region of an aggregator account that is requesting authorization but is not yet authorized.

func (PendingAggregationRequest) GoString added in v1.13.28

func (s PendingAggregationRequest) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PendingAggregationRequest) SetRequesterAccountId added in v1.13.28

func (s *PendingAggregationRequest) SetRequesterAccountId(v string) *PendingAggregationRequest

SetRequesterAccountId sets the RequesterAccountId field's value.

func (*PendingAggregationRequest) SetRequesterAwsRegion added in v1.13.28

func (s *PendingAggregationRequest) SetRequesterAwsRegion(v string) *PendingAggregationRequest

SetRequesterAwsRegion sets the RequesterAwsRegion field's value.

func (PendingAggregationRequest) String added in v1.13.28

func (s PendingAggregationRequest) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutAggregationAuthorizationInput added in v1.13.28

type PutAggregationAuthorizationInput struct {

	// The 12-digit account ID of the account authorized to aggregate data.
	//
	// AuthorizedAccountId is a required field
	AuthorizedAccountId *string `type:"string" required:"true"`

	// The region authorized to collect aggregated data.
	//
	// AuthorizedAwsRegion is a required field
	AuthorizedAwsRegion *string `min:"1" type:"string" required:"true"`

	// An array of tag object.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (PutAggregationAuthorizationInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutAggregationAuthorizationInput) SetAuthorizedAccountId added in v1.13.28

SetAuthorizedAccountId sets the AuthorizedAccountId field's value.

func (*PutAggregationAuthorizationInput) SetAuthorizedAwsRegion added in v1.13.28

SetAuthorizedAwsRegion sets the AuthorizedAwsRegion field's value.

func (*PutAggregationAuthorizationInput) SetTags added in v1.19.25

SetTags sets the Tags field's value.

func (PutAggregationAuthorizationInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutAggregationAuthorizationInput) Validate added in v1.13.28

Validate inspects the fields of the type to determine if they are valid.

type PutAggregationAuthorizationOutput added in v1.13.28

type PutAggregationAuthorizationOutput struct {

	// Returns an AggregationAuthorization object.
	AggregationAuthorization *AggregationAuthorization `type:"structure"`
	// contains filtered or unexported fields
}

func (PutAggregationAuthorizationOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutAggregationAuthorizationOutput) SetAggregationAuthorization added in v1.13.28

SetAggregationAuthorization sets the AggregationAuthorization field's value.

func (PutAggregationAuthorizationOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutConfigRuleInput added in v0.9.13

type PutConfigRuleInput struct {

	// The rule that you want to add to your account.
	//
	// ConfigRule is a required field
	ConfigRule *ConfigRule `type:"structure" required:"true"`

	// An array of tag object.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (PutConfigRuleInput) GoString added in v0.9.13

func (s PutConfigRuleInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigRuleInput) SetConfigRule added in v1.5.0

func (s *PutConfigRuleInput) SetConfigRule(v *ConfigRule) *PutConfigRuleInput

SetConfigRule sets the ConfigRule field's value.

func (*PutConfigRuleInput) SetTags added in v1.19.25

func (s *PutConfigRuleInput) SetTags(v []*Tag) *PutConfigRuleInput

SetTags sets the Tags field's value.

func (PutConfigRuleInput) String added in v0.9.13

func (s PutConfigRuleInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigRuleInput) Validate added in v1.1.21

func (s *PutConfigRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutConfigRuleOutput added in v0.9.13

type PutConfigRuleOutput struct {
	// contains filtered or unexported fields
}

func (PutConfigRuleOutput) GoString added in v0.9.13

func (s PutConfigRuleOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutConfigRuleOutput) String added in v0.9.13

func (s PutConfigRuleOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutConfigurationAggregatorInput added in v1.13.28

type PutConfigurationAggregatorInput struct {

	// A list of AccountAggregationSource object.
	AccountAggregationSources []*AccountAggregationSource `type:"list"`

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// An OrganizationAggregationSource object.
	OrganizationAggregationSource *OrganizationAggregationSource `type:"structure"`

	// An array of tag object.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (PutConfigurationAggregatorInput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigurationAggregatorInput) SetAccountAggregationSources added in v1.13.28

SetAccountAggregationSources sets the AccountAggregationSources field's value.

func (*PutConfigurationAggregatorInput) SetConfigurationAggregatorName added in v1.13.28

func (s *PutConfigurationAggregatorInput) SetConfigurationAggregatorName(v string) *PutConfigurationAggregatorInput

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*PutConfigurationAggregatorInput) SetOrganizationAggregationSource added in v1.13.28

SetOrganizationAggregationSource sets the OrganizationAggregationSource field's value.

func (*PutConfigurationAggregatorInput) SetTags added in v1.19.25

SetTags sets the Tags field's value.

func (PutConfigurationAggregatorInput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigurationAggregatorInput) Validate added in v1.13.28

func (s *PutConfigurationAggregatorInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutConfigurationAggregatorOutput added in v1.13.28

type PutConfigurationAggregatorOutput struct {

	// Returns a ConfigurationAggregator object.
	ConfigurationAggregator *ConfigurationAggregator `type:"structure"`
	// contains filtered or unexported fields
}

func (PutConfigurationAggregatorOutput) GoString added in v1.13.28

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigurationAggregatorOutput) SetConfigurationAggregator added in v1.13.28

SetConfigurationAggregator sets the ConfigurationAggregator field's value.

func (PutConfigurationAggregatorOutput) String added in v1.13.28

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutConfigurationRecorderInput

type PutConfigurationRecorderInput struct {

	// An object for the configuration recorder to record configuration changes
	// for specified resource types.
	//
	// ConfigurationRecorder is a required field
	ConfigurationRecorder *ConfigurationRecorder `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

The input for the PutConfigurationRecorder action.

func (PutConfigurationRecorderInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigurationRecorderInput) SetConfigurationRecorder added in v1.5.0

SetConfigurationRecorder sets the ConfigurationRecorder field's value.

func (PutConfigurationRecorderInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConfigurationRecorderInput) Validate added in v1.1.21

func (s *PutConfigurationRecorderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutConfigurationRecorderOutput

type PutConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (PutConfigurationRecorderOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutConfigurationRecorderOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutConformancePackInput added in v1.25.38

type PutConformancePackInput struct {

	// A list of ConformancePackInputParameter objects.
	ConformancePackInputParameters []*ConformancePackInputParameter `type:"list"`

	// The unique name of the conformance pack you want to deploy.
	//
	// ConformancePackName is a required field
	ConformancePackName *string `min:"1" type:"string" required:"true"`

	// The name of the Amazon S3 bucket where Config stores conformance pack templates.
	//
	// This field is optional.
	DeliveryS3Bucket *string `type:"string"`

	// The prefix for the Amazon S3 bucket.
	//
	// This field is optional.
	DeliveryS3KeyPrefix *string `type:"string"`

	// A string containing the full conformance pack template body. The structure
	// containing the template body has a minimum length of 1 byte and a maximum
	// length of 51,200 bytes.
	//
	// You can use a YAML template with two resource types: Config rule (AWS::Config::ConfigRule)
	// and remediation action (AWS::Config::RemediationConfiguration).
	TemplateBody *string `min:"1" type:"string"`

	// The location of the file containing the template body (s3://bucketname/prefix).
	// The uri must point to a conformance pack template (max size: 300 KB) that
	// is located in an Amazon S3 bucket in the same Region as the conformance pack.
	//
	// You must have access to read Amazon S3 bucket. In addition, in order to ensure
	// a successful deployment, the template object must not be in an archived storage
	// class (https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html)
	// if this parameter is passed.
	TemplateS3Uri *string `min:"1" type:"string"`

	// An object of type TemplateSSMDocumentDetails, which contains the name or
	// the Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager
	// document (SSM document) and the version of the SSM document that is used
	// to create a conformance pack.
	TemplateSSMDocumentDetails *TemplateSSMDocumentDetails `type:"structure"`
	// contains filtered or unexported fields
}

func (PutConformancePackInput) GoString added in v1.25.38

func (s PutConformancePackInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConformancePackInput) SetConformancePackInputParameters added in v1.25.38

func (s *PutConformancePackInput) SetConformancePackInputParameters(v []*ConformancePackInputParameter) *PutConformancePackInput

SetConformancePackInputParameters sets the ConformancePackInputParameters field's value.

func (*PutConformancePackInput) SetConformancePackName added in v1.25.38

func (s *PutConformancePackInput) SetConformancePackName(v string) *PutConformancePackInput

SetConformancePackName sets the ConformancePackName field's value.

func (*PutConformancePackInput) SetDeliveryS3Bucket added in v1.25.38

func (s *PutConformancePackInput) SetDeliveryS3Bucket(v string) *PutConformancePackInput

SetDeliveryS3Bucket sets the DeliveryS3Bucket field's value.

func (*PutConformancePackInput) SetDeliveryS3KeyPrefix added in v1.25.38

func (s *PutConformancePackInput) SetDeliveryS3KeyPrefix(v string) *PutConformancePackInput

SetDeliveryS3KeyPrefix sets the DeliveryS3KeyPrefix field's value.

func (*PutConformancePackInput) SetTemplateBody added in v1.25.38

SetTemplateBody sets the TemplateBody field's value.

func (*PutConformancePackInput) SetTemplateS3Uri added in v1.25.38

func (s *PutConformancePackInput) SetTemplateS3Uri(v string) *PutConformancePackInput

SetTemplateS3Uri sets the TemplateS3Uri field's value.

func (*PutConformancePackInput) SetTemplateSSMDocumentDetails added in v1.44.84

func (s *PutConformancePackInput) SetTemplateSSMDocumentDetails(v *TemplateSSMDocumentDetails) *PutConformancePackInput

SetTemplateSSMDocumentDetails sets the TemplateSSMDocumentDetails field's value.

func (PutConformancePackInput) String added in v1.25.38

func (s PutConformancePackInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConformancePackInput) Validate added in v1.25.38

func (s *PutConformancePackInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutConformancePackOutput added in v1.25.38

type PutConformancePackOutput struct {

	// ARN of the conformance pack.
	ConformancePackArn *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (PutConformancePackOutput) GoString added in v1.25.38

func (s PutConformancePackOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutConformancePackOutput) SetConformancePackArn added in v1.25.38

func (s *PutConformancePackOutput) SetConformancePackArn(v string) *PutConformancePackOutput

SetConformancePackArn sets the ConformancePackArn field's value.

func (PutConformancePackOutput) String added in v1.25.38

func (s PutConformancePackOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutDeliveryChannelInput

type PutDeliveryChannelInput struct {

	// The configuration delivery channel object that delivers the configuration
	// information to an Amazon S3 bucket and to an Amazon SNS topic.
	//
	// DeliveryChannel is a required field
	DeliveryChannel *DeliveryChannel `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

The input for the PutDeliveryChannel action.

func (PutDeliveryChannelInput) GoString added in v0.6.5

func (s PutDeliveryChannelInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutDeliveryChannelInput) SetDeliveryChannel added in v1.5.0

SetDeliveryChannel sets the DeliveryChannel field's value.

func (PutDeliveryChannelInput) String added in v0.6.5

func (s PutDeliveryChannelInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutDeliveryChannelInput) Validate added in v1.1.21

func (s *PutDeliveryChannelInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutDeliveryChannelOutput

type PutDeliveryChannelOutput struct {
	// contains filtered or unexported fields
}

func (PutDeliveryChannelOutput) GoString added in v0.6.5

func (s PutDeliveryChannelOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutDeliveryChannelOutput) String added in v0.6.5

func (s PutDeliveryChannelOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutEvaluationsInput added in v0.9.13

type PutEvaluationsInput struct {

	// The assessments that the Lambda function performs. Each evaluation identifies
	// an Amazon Web Services resource and indicates whether it complies with the
	// Config rule that invokes the Lambda function.
	Evaluations []*Evaluation `type:"list"`

	// An encrypted token that associates an evaluation with an Config rule. Identifies
	// the rule and the event that triggered the evaluation.
	//
	// ResultToken is a required field
	ResultToken *string `type:"string" required:"true"`

	// Use this parameter to specify a test run for PutEvaluations. You can verify
	// whether your Lambda function will deliver evaluation results to Config. No
	// updates occur to your existing evaluations, and evaluation results are not
	// sent to Config.
	//
	// When TestMode is true, PutEvaluations doesn't require a valid value for the
	// ResultToken parameter, but the value cannot be null.
	TestMode *bool `type:"boolean"`
	// contains filtered or unexported fields
}

func (PutEvaluationsInput) GoString added in v0.9.13

func (s PutEvaluationsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutEvaluationsInput) SetEvaluations added in v1.5.0

func (s *PutEvaluationsInput) SetEvaluations(v []*Evaluation) *PutEvaluationsInput

SetEvaluations sets the Evaluations field's value.

func (*PutEvaluationsInput) SetResultToken added in v1.5.0

func (s *PutEvaluationsInput) SetResultToken(v string) *PutEvaluationsInput

SetResultToken sets the ResultToken field's value.

func (*PutEvaluationsInput) SetTestMode added in v1.6.24

func (s *PutEvaluationsInput) SetTestMode(v bool) *PutEvaluationsInput

SetTestMode sets the TestMode field's value.

func (PutEvaluationsInput) String added in v0.9.13

func (s PutEvaluationsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutEvaluationsInput) Validate added in v1.1.21

func (s *PutEvaluationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutEvaluationsOutput added in v0.9.13

type PutEvaluationsOutput struct {

	// Requests that failed because of a client or server error.
	FailedEvaluations []*Evaluation `type:"list"`
	// contains filtered or unexported fields
}

func (PutEvaluationsOutput) GoString added in v0.9.13

func (s PutEvaluationsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutEvaluationsOutput) SetFailedEvaluations added in v1.5.0

func (s *PutEvaluationsOutput) SetFailedEvaluations(v []*Evaluation) *PutEvaluationsOutput

SetFailedEvaluations sets the FailedEvaluations field's value.

func (PutEvaluationsOutput) String added in v0.9.13

func (s PutEvaluationsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutExternalEvaluationInput added in v1.36.11

type PutExternalEvaluationInput struct {

	// The name of the Config rule.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// An ExternalEvaluation object that provides details about compliance.
	//
	// ExternalEvaluation is a required field
	ExternalEvaluation *ExternalEvaluation `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (PutExternalEvaluationInput) GoString added in v1.36.11

func (s PutExternalEvaluationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutExternalEvaluationInput) SetConfigRuleName added in v1.36.11

SetConfigRuleName sets the ConfigRuleName field's value.

func (*PutExternalEvaluationInput) SetExternalEvaluation added in v1.36.11

SetExternalEvaluation sets the ExternalEvaluation field's value.

func (PutExternalEvaluationInput) String added in v1.36.11

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutExternalEvaluationInput) Validate added in v1.36.11

func (s *PutExternalEvaluationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutExternalEvaluationOutput added in v1.36.11

type PutExternalEvaluationOutput struct {
	// contains filtered or unexported fields
}

func (PutExternalEvaluationOutput) GoString added in v1.36.11

func (s PutExternalEvaluationOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutExternalEvaluationOutput) String added in v1.36.11

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutOrganizationConfigRuleInput added in v1.20.17

type PutOrganizationConfigRuleInput struct {

	// A comma-separated list of accounts that you want to exclude from an organization
	// Config rule.
	ExcludedAccounts []*string `type:"list"`

	// The name that you assign to an organization Config rule.
	//
	// OrganizationConfigRuleName is a required field
	OrganizationConfigRuleName *string `min:"1" type:"string" required:"true"`

	// An OrganizationCustomPolicyRuleMetadata object. This object specifies metadata
	// for your organization's Config Custom Policy rule. The metadata includes
	// the runtime system in use, which accounts have debug logging enabled, and
	// other custom rule metadata, such as resource type, resource ID of Amazon
	// Web Services resource, and organization trigger types that initiate Config
	// to evaluate Amazon Web Services resources against a rule.
	OrganizationCustomPolicyRuleMetadata *OrganizationCustomPolicyRuleMetadata `type:"structure"`

	// An OrganizationCustomRuleMetadata object. This object specifies organization
	// custom rule metadata such as resource type, resource ID of Amazon Web Services
	// resource, Lambda function ARN, and organization trigger types that trigger
	// Config to evaluate your Amazon Web Services resources against a rule. It
	// also provides the frequency with which you want Config to run evaluations
	// for the rule if the trigger type is periodic.
	OrganizationCustomRuleMetadata *OrganizationCustomRuleMetadata `type:"structure"`

	// An OrganizationManagedRuleMetadata object. This object specifies organization
	// managed rule metadata such as resource type and ID of Amazon Web Services
	// resource along with the rule identifier. It also provides the frequency with
	// which you want Config to run evaluations for the rule if the trigger type
	// is periodic.
	OrganizationManagedRuleMetadata *OrganizationManagedRuleMetadata `type:"structure"`
	// contains filtered or unexported fields
}

func (PutOrganizationConfigRuleInput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutOrganizationConfigRuleInput) SetExcludedAccounts added in v1.20.17

SetExcludedAccounts sets the ExcludedAccounts field's value.

func (*PutOrganizationConfigRuleInput) SetOrganizationConfigRuleName added in v1.20.17

func (s *PutOrganizationConfigRuleInput) SetOrganizationConfigRuleName(v string) *PutOrganizationConfigRuleInput

SetOrganizationConfigRuleName sets the OrganizationConfigRuleName field's value.

func (*PutOrganizationConfigRuleInput) SetOrganizationCustomPolicyRuleMetadata added in v1.43.25

SetOrganizationCustomPolicyRuleMetadata sets the OrganizationCustomPolicyRuleMetadata field's value.

func (*PutOrganizationConfigRuleInput) SetOrganizationCustomRuleMetadata added in v1.20.17

SetOrganizationCustomRuleMetadata sets the OrganizationCustomRuleMetadata field's value.

func (*PutOrganizationConfigRuleInput) SetOrganizationManagedRuleMetadata added in v1.20.17

SetOrganizationManagedRuleMetadata sets the OrganizationManagedRuleMetadata field's value.

func (PutOrganizationConfigRuleInput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutOrganizationConfigRuleInput) Validate added in v1.20.17

func (s *PutOrganizationConfigRuleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutOrganizationConfigRuleOutput added in v1.20.17

type PutOrganizationConfigRuleOutput struct {

	// The Amazon Resource Name (ARN) of an organization Config rule.
	OrganizationConfigRuleArn *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (PutOrganizationConfigRuleOutput) GoString added in v1.20.17

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutOrganizationConfigRuleOutput) SetOrganizationConfigRuleArn added in v1.20.17

func (s *PutOrganizationConfigRuleOutput) SetOrganizationConfigRuleArn(v string) *PutOrganizationConfigRuleOutput

SetOrganizationConfigRuleArn sets the OrganizationConfigRuleArn field's value.

func (PutOrganizationConfigRuleOutput) String added in v1.20.17

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutOrganizationConformancePackInput added in v1.25.38

type PutOrganizationConformancePackInput struct {

	// A list of ConformancePackInputParameter objects.
	ConformancePackInputParameters []*ConformancePackInputParameter `type:"list"`

	// The name of the Amazon S3 bucket where Config stores conformance pack templates.
	//
	// This field is optional. If used, it must be prefixed with awsconfigconforms.
	DeliveryS3Bucket *string `type:"string"`

	// The prefix for the Amazon S3 bucket.
	//
	// This field is optional.
	DeliveryS3KeyPrefix *string `type:"string"`

	// A list of Amazon Web Services accounts to be excluded from an organization
	// conformance pack while deploying a conformance pack.
	ExcludedAccounts []*string `type:"list"`

	// Name of the organization conformance pack you want to create.
	//
	// OrganizationConformancePackName is a required field
	OrganizationConformancePackName *string `min:"1" type:"string" required:"true"`

	// A string containing full conformance pack template body. Structure containing
	// the template body with a minimum length of 1 byte and a maximum length of
	// 51,200 bytes.
	TemplateBody *string `min:"1" type:"string"`

	// Location of file containing the template body. The uri must point to the
	// conformance pack template (max size: 300 KB).
	//
	// You must have access to read Amazon S3 bucket. In addition, in order to ensure
	// a successful deployment, the template object must not be in an archived storage
	// class (https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-class-intro.html)
	// if this parameter is passed.
	TemplateS3Uri *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (PutOrganizationConformancePackInput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutOrganizationConformancePackInput) SetConformancePackInputParameters added in v1.25.38

SetConformancePackInputParameters sets the ConformancePackInputParameters field's value.

func (*PutOrganizationConformancePackInput) SetDeliveryS3Bucket added in v1.25.38

SetDeliveryS3Bucket sets the DeliveryS3Bucket field's value.

func (*PutOrganizationConformancePackInput) SetDeliveryS3KeyPrefix added in v1.25.38

SetDeliveryS3KeyPrefix sets the DeliveryS3KeyPrefix field's value.

func (*PutOrganizationConformancePackInput) SetExcludedAccounts added in v1.25.38

SetExcludedAccounts sets the ExcludedAccounts field's value.

func (*PutOrganizationConformancePackInput) SetOrganizationConformancePackName added in v1.25.38

func (s *PutOrganizationConformancePackInput) SetOrganizationConformancePackName(v string) *PutOrganizationConformancePackInput

SetOrganizationConformancePackName sets the OrganizationConformancePackName field's value.

func (*PutOrganizationConformancePackInput) SetTemplateBody added in v1.25.38

SetTemplateBody sets the TemplateBody field's value.

func (*PutOrganizationConformancePackInput) SetTemplateS3Uri added in v1.25.38

SetTemplateS3Uri sets the TemplateS3Uri field's value.

func (PutOrganizationConformancePackInput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutOrganizationConformancePackInput) Validate added in v1.25.38

Validate inspects the fields of the type to determine if they are valid.

type PutOrganizationConformancePackOutput added in v1.25.38

type PutOrganizationConformancePackOutput struct {

	// ARN of the organization conformance pack.
	OrganizationConformancePackArn *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (PutOrganizationConformancePackOutput) GoString added in v1.25.38

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutOrganizationConformancePackOutput) SetOrganizationConformancePackArn added in v1.25.38

func (s *PutOrganizationConformancePackOutput) SetOrganizationConformancePackArn(v string) *PutOrganizationConformancePackOutput

SetOrganizationConformancePackArn sets the OrganizationConformancePackArn field's value.

func (PutOrganizationConformancePackOutput) String added in v1.25.38

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutRemediationConfigurationsInput added in v1.18.2

type PutRemediationConfigurationsInput struct {

	// A list of remediation configuration objects.
	//
	// RemediationConfigurations is a required field
	RemediationConfigurations []*RemediationConfiguration `type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (PutRemediationConfigurationsInput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRemediationConfigurationsInput) SetRemediationConfigurations added in v1.18.2

SetRemediationConfigurations sets the RemediationConfigurations field's value.

func (PutRemediationConfigurationsInput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRemediationConfigurationsInput) Validate added in v1.18.2

Validate inspects the fields of the type to determine if they are valid.

type PutRemediationConfigurationsOutput added in v1.18.2

type PutRemediationConfigurationsOutput struct {

	// Returns a list of failed remediation batch objects.
	FailedBatches []*FailedRemediationBatch `type:"list"`
	// contains filtered or unexported fields
}

func (PutRemediationConfigurationsOutput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRemediationConfigurationsOutput) SetFailedBatches added in v1.18.2

SetFailedBatches sets the FailedBatches field's value.

func (PutRemediationConfigurationsOutput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutRemediationExceptionsInput added in v1.23.16

type PutRemediationExceptionsInput struct {

	// The name of the Config rule for which you want to create remediation exception.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The exception is automatically deleted after the expiration date.
	ExpirationTime *time.Time `type:"timestamp"`

	// The message contains an explanation of the exception.
	Message *string `min:"1" type:"string"`

	// An exception list of resource exception keys to be processed with the current
	// request. Config adds exception for each resource key. For example, Config
	// adds 3 exceptions for 3 resource keys.
	//
	// ResourceKeys is a required field
	ResourceKeys []*RemediationExceptionResourceKey `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (PutRemediationExceptionsInput) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRemediationExceptionsInput) SetConfigRuleName added in v1.23.16

SetConfigRuleName sets the ConfigRuleName field's value.

func (*PutRemediationExceptionsInput) SetExpirationTime added in v1.23.16

SetExpirationTime sets the ExpirationTime field's value.

func (*PutRemediationExceptionsInput) SetMessage added in v1.23.16

SetMessage sets the Message field's value.

func (*PutRemediationExceptionsInput) SetResourceKeys added in v1.23.16

SetResourceKeys sets the ResourceKeys field's value.

func (PutRemediationExceptionsInput) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRemediationExceptionsInput) Validate added in v1.23.16

func (s *PutRemediationExceptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutRemediationExceptionsOutput added in v1.23.16

type PutRemediationExceptionsOutput struct {

	// Returns a list of failed remediation exceptions batch objects. Each object
	// in the batch consists of a list of failed items and failure messages.
	FailedBatches []*FailedRemediationExceptionBatch `type:"list"`
	// contains filtered or unexported fields
}

func (PutRemediationExceptionsOutput) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRemediationExceptionsOutput) SetFailedBatches added in v1.23.16

SetFailedBatches sets the FailedBatches field's value.

func (PutRemediationExceptionsOutput) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutResourceConfigInput added in v1.25.40

type PutResourceConfigInput struct {

	// The configuration object of the resource in valid JSON format. It must match
	// the schema registered with CloudFormation.
	//
	// The configuration JSON must not exceed 64 KB.
	//
	// Configuration is a required field
	Configuration *string `type:"string" required:"true"`

	// Unique identifier of the resource.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`

	// Name of the resource.
	ResourceName *string `type:"string"`

	// The type of the resource. The custom resource type must be registered with
	// CloudFormation.
	//
	// You cannot use the organization names “amzn”, “amazon”, “alexa”,
	// “custom” with custom resource types. It is the first part of the ResourceType
	// up to the first ::.
	//
	// ResourceType is a required field
	ResourceType *string `min:"1" type:"string" required:"true"`

	// Version of the schema registered for the ResourceType in CloudFormation.
	//
	// SchemaVersionId is a required field
	SchemaVersionId *string `min:"1" type:"string" required:"true"`

	// Tags associated with the resource.
	//
	// This field is not to be confused with the Amazon Web Services-wide tag feature
	// for Amazon Web Services resources. Tags for PutResourceConfig are tags that
	// you supply for the configuration items of your custom resources.
	Tags map[string]*string `type:"map"`
	// contains filtered or unexported fields
}

func (PutResourceConfigInput) GoString added in v1.25.40

func (s PutResourceConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutResourceConfigInput) SetConfiguration added in v1.25.40

func (s *PutResourceConfigInput) SetConfiguration(v string) *PutResourceConfigInput

SetConfiguration sets the Configuration field's value.

func (*PutResourceConfigInput) SetResourceId added in v1.25.40

SetResourceId sets the ResourceId field's value.

func (*PutResourceConfigInput) SetResourceName added in v1.25.40

func (s *PutResourceConfigInput) SetResourceName(v string) *PutResourceConfigInput

SetResourceName sets the ResourceName field's value.

func (*PutResourceConfigInput) SetResourceType added in v1.25.40

func (s *PutResourceConfigInput) SetResourceType(v string) *PutResourceConfigInput

SetResourceType sets the ResourceType field's value.

func (*PutResourceConfigInput) SetSchemaVersionId added in v1.25.40

func (s *PutResourceConfigInput) SetSchemaVersionId(v string) *PutResourceConfigInput

SetSchemaVersionId sets the SchemaVersionId field's value.

func (*PutResourceConfigInput) SetTags added in v1.25.40

SetTags sets the Tags field's value.

func (PutResourceConfigInput) String added in v1.25.40

func (s PutResourceConfigInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutResourceConfigInput) Validate added in v1.25.40

func (s *PutResourceConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutResourceConfigOutput added in v1.25.40

type PutResourceConfigOutput struct {
	// contains filtered or unexported fields
}

func (PutResourceConfigOutput) GoString added in v1.25.40

func (s PutResourceConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutResourceConfigOutput) String added in v1.25.40

func (s PutResourceConfigOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutRetentionConfigurationInput added in v1.13.56

type PutRetentionConfigurationInput struct {

	// Number of days Config stores your historical information.
	//
	// Currently, only applicable to the configuration item history.
	//
	// RetentionPeriodInDays is a required field
	RetentionPeriodInDays *int64 `min:"30" type:"integer" required:"true"`
	// contains filtered or unexported fields
}

func (PutRetentionConfigurationInput) GoString added in v1.13.56

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRetentionConfigurationInput) SetRetentionPeriodInDays added in v1.13.56

SetRetentionPeriodInDays sets the RetentionPeriodInDays field's value.

func (PutRetentionConfigurationInput) String added in v1.13.56

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRetentionConfigurationInput) Validate added in v1.13.56

func (s *PutRetentionConfigurationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutRetentionConfigurationOutput added in v1.13.56

type PutRetentionConfigurationOutput struct {

	// Returns a retention configuration object.
	RetentionConfiguration *RetentionConfiguration `type:"structure"`
	// contains filtered or unexported fields
}

func (PutRetentionConfigurationOutput) GoString added in v1.13.56

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutRetentionConfigurationOutput) SetRetentionConfiguration added in v1.13.56

SetRetentionConfiguration sets the RetentionConfiguration field's value.

func (PutRetentionConfigurationOutput) String added in v1.13.56

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutStoredQueryInput added in v1.36.13

type PutStoredQueryInput struct {

	// A list of StoredQuery objects. The mandatory fields are QueryName and Expression.
	//
	// When you are creating a query, you must provide a query name and an expression.
	// When you are updating a query, you must provide a query name but updating
	// the description is optional.
	//
	// StoredQuery is a required field
	StoredQuery *StoredQuery `type:"structure" required:"true"`

	// A list of Tags object.
	Tags []*Tag `type:"list"`
	// contains filtered or unexported fields
}

func (PutStoredQueryInput) GoString added in v1.36.13

func (s PutStoredQueryInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutStoredQueryInput) SetStoredQuery added in v1.36.13

func (s *PutStoredQueryInput) SetStoredQuery(v *StoredQuery) *PutStoredQueryInput

SetStoredQuery sets the StoredQuery field's value.

func (*PutStoredQueryInput) SetTags added in v1.36.13

func (s *PutStoredQueryInput) SetTags(v []*Tag) *PutStoredQueryInput

SetTags sets the Tags field's value.

func (PutStoredQueryInput) String added in v1.36.13

func (s PutStoredQueryInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutStoredQueryInput) Validate added in v1.36.13

func (s *PutStoredQueryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutStoredQueryOutput added in v1.36.13

type PutStoredQueryOutput struct {

	// Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
	QueryArn *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (PutStoredQueryOutput) GoString added in v1.36.13

func (s PutStoredQueryOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutStoredQueryOutput) SetQueryArn added in v1.36.13

SetQueryArn sets the QueryArn field's value.

func (PutStoredQueryOutput) String added in v1.36.13

func (s PutStoredQueryOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type QueryInfo added in v1.18.5

type QueryInfo struct {

	// Returns a FieldInfo object.
	SelectFields []*FieldInfo `type:"list"`
	// contains filtered or unexported fields
}

Details about the query.

func (QueryInfo) GoString added in v1.18.5

func (s QueryInfo) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*QueryInfo) SetSelectFields added in v1.18.5

func (s *QueryInfo) SetSelectFields(v []*FieldInfo) *QueryInfo

SetSelectFields sets the SelectFields field's value.

func (QueryInfo) String added in v1.18.5

func (s QueryInfo) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RecordingGroup added in v0.6.4

type RecordingGroup struct {

	// Specifies whether Config records configuration changes for all supported
	// resource types, excluding the global IAM resource types.
	//
	// If you set this field to true, when Config adds support for a new resource
	// type, Config starts recording resources of that type automatically.
	//
	// If you set this field to true, you cannot enumerate specific resource types
	// to record in the resourceTypes field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html),
	// or to exclude in the resourceTypes field of ExclusionByResourceTypes (https://docs.aws.amazon.com/config/latest/APIReference/API_ExclusionByResourceTypes.html).
	//
	// Region availability
	//
	// Check Resource Coverage by Region Availability (https://docs.aws.amazon.com/config/latest/developerguide/what-is-resource-config-coverage.html)
	// to see if a resource type is supported in the Amazon Web Services Region
	// where you set up Config.
	AllSupported *bool `locationName:"allSupported" type:"boolean"`

	// An object that specifies how Config excludes resource types from being recorded
	// by the configuration recorder.
	//
	// Required fields
	//
	// To use this option, you must set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	// to EXCLUSION_BY_RESOURCE_TYPES.
	ExclusionByResourceTypes *ExclusionByResourceTypes `locationName:"exclusionByResourceTypes" type:"structure"`

	// This option is a bundle which only applies to the global IAM resource types:
	// IAM users, groups, roles, and customer managed policies. These global IAM
	// resource types can only be recorded by Config in Regions where Config was
	// available before February 2022. You cannot be record the global IAM resouce
	// types in Regions supported by Config after February 2022. This list where
	// you cannot record the global IAM resource types includes the following Regions:
	//
	//    * Asia Pacific (Hyderabad)
	//
	//    * Asia Pacific (Melbourne)
	//
	//    * Canada West (Calgary)
	//
	//    * Europe (Spain)
	//
	//    * Europe (Zurich)
	//
	//    * Israel (Tel Aviv)
	//
	//    * Middle East (UAE)
	//
	// Aurora global clusters are recorded in all enabled Regions
	//
	// The AWS::RDS::GlobalCluster resource type will be recorded in all supported
	// Config Regions where the configuration recorder is enabled, even if includeGlobalResourceTypes
	// is setfalse. The includeGlobalResourceTypes option is a bundle which only
	// applies to IAM users, groups, roles, and customer managed policies.
	//
	// If you do not want to record AWS::RDS::GlobalCluster in all enabled Regions,
	// use one of the following recording strategies:
	//
	// Record all current and future resource types with exclusions (EXCLUSION_BY_RESOURCE_TYPES),
	// or
	//
	// Record specific resource types (INCLUSION_BY_RESOURCE_TYPES).
	//
	// For more information, see Selecting Which Resources are Recorded (https://docs.aws.amazon.com/config/latest/developerguide/select-resources.html#select-resources-all)
	// in the Config developer guide.
	//
	// includeGlobalResourceTypes and the exclusion recording strategy
	//
	// The includeGlobalResourceTypes field has no impact on the EXCLUSION_BY_RESOURCE_TYPES
	// recording strategy. This means that the global IAM resource types (IAM users,
	// groups, roles, and customer managed policies) will not be automatically added
	// as exclusions for exclusionByResourceTypes when includeGlobalResourceTypes
	// is set to false.
	//
	// The includeGlobalResourceTypes field should only be used to modify the AllSupported
	// field, as the default for the AllSupported field is to record configuration
	// changes for all supported resource types excluding the global IAM resource
	// types. To include the global IAM resource types when AllSupported is set
	// to true, make sure to set includeGlobalResourceTypes to true.
	//
	// To exclude the global IAM resource types for the EXCLUSION_BY_RESOURCE_TYPES
	// recording strategy, you need to manually add them to the resourceTypes field
	// of exclusionByResourceTypes.
	//
	// Required and optional fields
	//
	// Before you set this field to true, set the allSupported field of RecordingGroup
	// (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	// to true. Optionally, you can set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	// to ALL_SUPPORTED_RESOURCE_TYPES.
	//
	// Overriding fields
	//
	// If you set this field to false but list global IAM resource types in the
	// resourceTypes field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html),
	// Config will still record configuration changes for those specified resource
	// types regardless of if you set the includeGlobalResourceTypes field to false.
	//
	// If you do not want to record configuration changes to the global IAM resource
	// types (IAM users, groups, roles, and customer managed policies), make sure
	// to not list them in the resourceTypes field in addition to setting the includeGlobalResourceTypes
	// field to false.
	IncludeGlobalResourceTypes *bool `locationName:"includeGlobalResourceTypes" type:"boolean"`

	// An object that specifies the recording strategy for the configuration recorder.
	//
	//    * If you set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	//    to ALL_SUPPORTED_RESOURCE_TYPES, Config records configuration changes
	//    for all supported resource types, excluding the global IAM resource types.
	//    You also must set the allSupported field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	//    to true. When Config adds support for a new resource type, Config automatically
	//    starts recording resources of that type.
	//
	//    * If you set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	//    to INCLUSION_BY_RESOURCE_TYPES, Config records configuration changes for
	//    only the resource types you specify in the resourceTypes field of RecordingGroup
	//    (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html).
	//
	//    * If you set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	//    to EXCLUSION_BY_RESOURCE_TYPES, Config records configuration changes for
	//    all supported resource types except the resource types that you specify
	//    to exclude from being recorded in the resourceTypes field of ExclusionByResourceTypes
	//    (https://docs.aws.amazon.com/config/latest/APIReference/API_ExclusionByResourceTypes.html).
	//
	// Required and optional fields
	//
	// The recordingStrategy field is optional when you set the allSupported field
	// of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	// to true.
	//
	// The recordingStrategy field is optional when you list resource types in the
	// resourceTypes field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html).
	//
	// The recordingStrategy field is required if you list resource types to exclude
	// from recording in the resourceTypes field of ExclusionByResourceTypes (https://docs.aws.amazon.com/config/latest/APIReference/API_ExclusionByResourceTypes.html).
	//
	// Overriding fields
	//
	// If you choose EXCLUSION_BY_RESOURCE_TYPES for the recording strategy, the
	// exclusionByResourceTypes field will override other properties in the request.
	//
	// For example, even if you set includeGlobalResourceTypes to false, global
	// IAM resource types will still be automatically recorded in this option unless
	// those resource types are specifically listed as exclusions in the resourceTypes
	// field of exclusionByResourceTypes.
	//
	// Global resources types and the resource exclusion recording strategy
	//
	// By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES recording strategy,
	// when Config adds support for a new resource type in the Region where you
	// set up the configuration recorder, including global resource types, Config
	// starts recording resources of that type automatically.
	//
	// Unless specifically listed as exclusions, AWS::RDS::GlobalCluster will be
	// recorded automatically in all supported Config Regions were the configuration
	// recorder is enabled.
	//
	// IAM users, groups, roles, and customer managed policies will be recorded
	// in the Region where you set up the configuration recorder if that is a Region
	// where Config was available before February 2022. You cannot be record the
	// global IAM resouce types in Regions supported by Config after February 2022.
	// This list where you cannot record the global IAM resource types includes
	// the following Regions:
	//
	//    * Asia Pacific (Hyderabad)
	//
	//    * Asia Pacific (Melbourne)
	//
	//    * Canada West (Calgary)
	//
	//    * Europe (Spain)
	//
	//    * Europe (Zurich)
	//
	//    * Israel (Tel Aviv)
	//
	//    * Middle East (UAE)
	RecordingStrategy *RecordingStrategy `locationName:"recordingStrategy" type:"structure"`

	// A comma-separated list that specifies which resource types Config records.
	//
	// For a list of valid resourceTypes values, see the Resource Type Value column
	// in Supported Amazon Web Services resource Types (https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources)
	// in the Config developer guide.
	//
	// Required and optional fields
	//
	// Optionally, you can set the useOnly field of RecordingStrategy (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingStrategy.html)
	// to INCLUSION_BY_RESOURCE_TYPES.
	//
	// To record all configuration changes, set the allSupported field of RecordingGroup
	// (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	// to true, and either omit this field or don't specify any resource types in
	// this field. If you set the allSupported field to false and specify values
	// for resourceTypes, when Config adds support for a new type of resource, it
	// will not record resources of that type unless you manually add that type
	// to your recording group.
	//
	// Region availability
	//
	// Before specifying a resource type for Config to track, check Resource Coverage
	// by Region Availability (https://docs.aws.amazon.com/config/latest/developerguide/what-is-resource-config-coverage.html)
	// to see if the resource type is supported in the Amazon Web Services Region
	// where you set up Config. If a resource type is supported by Config in at
	// least one Region, you can enable the recording of that resource type in all
	// Regions supported by Config, even if the specified resource type is not supported
	// in the Amazon Web Services Region where you set up Config.
	ResourceTypes []*string `locationName:"resourceTypes" type:"list" enum:"ResourceType"`
	// contains filtered or unexported fields
}

Specifies which resource types Config records for configuration changes. By default, Config records configuration changes for all current and future supported resource types in the Amazon Web Services Region where you have enabled Config, excluding the global IAM resource types: IAM users, groups, roles, and customer managed policies.

In the recording group, you specify whether you want to record all supported current and future supported resource types or to include or exclude specific resources types. For a list of supported resource types, see Supported Resource Types (https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources) in the Config developer guide.

If you don't want Config to record all current and future supported resource types (excluding the global IAM resource types), use one of the following recording strategies:

Record all current and future resource types with exclusions (EXCLUSION_BY_RESOURCE_TYPES), or

Record specific resource types (INCLUSION_BY_RESOURCE_TYPES).

If you use the recording strategy to Record all current and future resource types (ALL_SUPPORTED_RESOURCE_TYPES), you can use the flag includeGlobalResourceTypes to include the global IAM resource types in your recording.

Aurora global clusters are recorded in all enabled Regions

The AWS::RDS::GlobalCluster resource type will be recorded in all supported Config Regions where the configuration recorder is enabled.

If you do not want to record AWS::RDS::GlobalCluster in all enabled Regions, use the EXCLUSION_BY_RESOURCE_TYPES or INCLUSION_BY_RESOURCE_TYPES recording strategy.

func (RecordingGroup) GoString added in v0.6.5

func (s RecordingGroup) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecordingGroup) SetAllSupported added in v1.5.0

func (s *RecordingGroup) SetAllSupported(v bool) *RecordingGroup

SetAllSupported sets the AllSupported field's value.

func (*RecordingGroup) SetExclusionByResourceTypes added in v1.44.273

func (s *RecordingGroup) SetExclusionByResourceTypes(v *ExclusionByResourceTypes) *RecordingGroup

SetExclusionByResourceTypes sets the ExclusionByResourceTypes field's value.

func (*RecordingGroup) SetIncludeGlobalResourceTypes added in v1.5.0

func (s *RecordingGroup) SetIncludeGlobalResourceTypes(v bool) *RecordingGroup

SetIncludeGlobalResourceTypes sets the IncludeGlobalResourceTypes field's value.

func (*RecordingGroup) SetRecordingStrategy added in v1.44.273

func (s *RecordingGroup) SetRecordingStrategy(v *RecordingStrategy) *RecordingGroup

SetRecordingStrategy sets the RecordingStrategy field's value.

func (*RecordingGroup) SetResourceTypes added in v1.5.0

func (s *RecordingGroup) SetResourceTypes(v []*string) *RecordingGroup

SetResourceTypes sets the ResourceTypes field's value.

func (RecordingGroup) String added in v0.6.5

func (s RecordingGroup) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RecordingMode added in v1.48.4

type RecordingMode struct {

	// The default recording frequency that Config uses to record configuration
	// changes.
	//
	// Daily recording is not supported for the following resource types:
	//
	//    * AWS::Config::ResourceCompliance
	//
	//    * AWS::Config::ConformancePackCompliance
	//
	//    * AWS::Config::ConfigurationRecorder
	//
	// For the allSupported (ALL_SUPPORTED_RESOURCE_TYPES) recording strategy, these
	// resource types will be set to Continuous recording.
	//
	// RecordingFrequency is a required field
	RecordingFrequency *string `locationName:"recordingFrequency" type:"string" required:"true" enum:"RecordingFrequency"`

	// An array of recordingModeOverride objects for you to specify your overrides
	// for the recording mode. The recordingModeOverride object in the recordingModeOverrides
	// array consists of three fields: a description, the new recordingFrequency,
	// and an array of resourceTypes to override.
	RecordingModeOverrides []*RecordingModeOverride `locationName:"recordingModeOverrides" type:"list"`
	// contains filtered or unexported fields
}

Specifies the default recording frequency that Config uses to record configuration changes. Config supports Continuous recording and Daily recording.

  • Continuous recording allows you to record configuration changes continuously whenever a change occurs.

  • Daily recording allows you to receive a configuration item (CI) representing the most recent state of your resources over the last 24-hour period, only if it’s different from the previous CI recorded.

Firewall Manager depends on continuous recording to monitor your resources. If you are using Firewall Manager, it is recommended that you set the recording frequency to Continuous.

You can also override the recording frequency for specific resource types.

func (RecordingMode) GoString added in v1.48.4

func (s RecordingMode) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecordingMode) SetRecordingFrequency added in v1.48.4

func (s *RecordingMode) SetRecordingFrequency(v string) *RecordingMode

SetRecordingFrequency sets the RecordingFrequency field's value.

func (*RecordingMode) SetRecordingModeOverrides added in v1.48.4

func (s *RecordingMode) SetRecordingModeOverrides(v []*RecordingModeOverride) *RecordingMode

SetRecordingModeOverrides sets the RecordingModeOverrides field's value.

func (RecordingMode) String added in v1.48.4

func (s RecordingMode) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecordingMode) Validate added in v1.48.4

func (s *RecordingMode) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordingModeOverride added in v1.48.4

type RecordingModeOverride struct {

	// A description that you provide for the override.
	Description *string `locationName:"description" min:"1" type:"string"`

	// The recording frequency that will be applied to all the resource types specified
	// in the override.
	//
	//    * Continuous recording allows you to record configuration changes continuously
	//    whenever a change occurs.
	//
	//    * Daily recording allows you to receive a configuration item (CI) representing
	//    the most recent state of your resources over the last 24-hour period,
	//    only if it’s different from the previous CI recorded.
	//
	// Firewall Manager depends on continuous recording to monitor your resources.
	// If you are using Firewall Manager, it is recommended that you set the recording
	// frequency to Continuous.
	//
	// RecordingFrequency is a required field
	RecordingFrequency *string `locationName:"recordingFrequency" type:"string" required:"true" enum:"RecordingFrequency"`

	// A comma-separated list that specifies which resource types Config includes
	// in the override.
	//
	// Daily recording is not supported for the following resource types:
	//
	//    * AWS::Config::ResourceCompliance
	//
	//    * AWS::Config::ConformancePackCompliance
	//
	//    * AWS::Config::ConfigurationRecorder
	//
	// ResourceTypes is a required field
	ResourceTypes []*string `locationName:"resourceTypes" type:"list" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

An object for you to specify your overrides for the recording mode.

func (RecordingModeOverride) GoString added in v1.48.4

func (s RecordingModeOverride) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecordingModeOverride) SetDescription added in v1.48.4

func (s *RecordingModeOverride) SetDescription(v string) *RecordingModeOverride

SetDescription sets the Description field's value.

func (*RecordingModeOverride) SetRecordingFrequency added in v1.48.4

func (s *RecordingModeOverride) SetRecordingFrequency(v string) *RecordingModeOverride

SetRecordingFrequency sets the RecordingFrequency field's value.

func (*RecordingModeOverride) SetResourceTypes added in v1.48.4

func (s *RecordingModeOverride) SetResourceTypes(v []*string) *RecordingModeOverride

SetResourceTypes sets the ResourceTypes field's value.

func (RecordingModeOverride) String added in v1.48.4

func (s RecordingModeOverride) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecordingModeOverride) Validate added in v1.48.4

func (s *RecordingModeOverride) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RecordingStrategy added in v1.44.273

type RecordingStrategy struct {

	// The recording strategy for the configuration recorder.
	//
	//    * If you set this option to ALL_SUPPORTED_RESOURCE_TYPES, Config records
	//    configuration changes for all supported resource types, excluding the
	//    global IAM resource types. You also must set the allSupported field of
	//    RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	//    to true. When Config adds support for a new resource type, Config automatically
	//    starts recording resources of that type. For a list of supported resource
	//    types, see Supported Resource Types (https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources)
	//    in the Config developer guide.
	//
	//    * If you set this option to INCLUSION_BY_RESOURCE_TYPES, Config records
	//    configuration changes for only the resource types that you specify in
	//    the resourceTypes field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html).
	//
	//    * If you set this option to EXCLUSION_BY_RESOURCE_TYPES, Config records
	//    configuration changes for all supported resource types, except the resource
	//    types that you specify to exclude from being recorded in the resourceTypes
	//    field of ExclusionByResourceTypes (https://docs.aws.amazon.com/config/latest/APIReference/API_ExclusionByResourceTypes.html).
	//
	// Required and optional fields
	//
	// The recordingStrategy field is optional when you set the allSupported field
	// of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html)
	// to true.
	//
	// The recordingStrategy field is optional when you list resource types in the
	// resourceTypes field of RecordingGroup (https://docs.aws.amazon.com/config/latest/APIReference/API_RecordingGroup.html).
	//
	// The recordingStrategy field is required if you list resource types to exclude
	// from recording in the resourceTypes field of ExclusionByResourceTypes (https://docs.aws.amazon.com/config/latest/APIReference/API_ExclusionByResourceTypes.html).
	//
	// Overriding fields
	//
	// If you choose EXCLUSION_BY_RESOURCE_TYPES for the recording strategy, the
	// exclusionByResourceTypes field will override other properties in the request.
	//
	// For example, even if you set includeGlobalResourceTypes to false, global
	// IAM resource types will still be automatically recorded in this option unless
	// those resource types are specifically listed as exclusions in the resourceTypes
	// field of exclusionByResourceTypes.
	//
	// Global resource types and the exclusion recording strategy
	//
	// By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES recording strategy,
	// when Config adds support for a new resource type in the Region where you
	// set up the configuration recorder, including global resource types, Config
	// starts recording resources of that type automatically.
	//
	// Unless specifically listed as exclusions, AWS::RDS::GlobalCluster will be
	// recorded automatically in all supported Config Regions were the configuration
	// recorder is enabled.
	//
	// IAM users, groups, roles, and customer managed policies will be recorded
	// in the Region where you set up the configuration recorder if that is a Region
	// where Config was available before February 2022. You cannot be record the
	// global IAM resouce types in Regions supported by Config after February 2022.
	// This list where you cannot record the global IAM resource types includes
	// the following Regions:
	//
	//    * Asia Pacific (Hyderabad)
	//
	//    * Asia Pacific (Melbourne)
	//
	//    * Canada West (Calgary)
	//
	//    * Europe (Spain)
	//
	//    * Europe (Zurich)
	//
	//    * Israel (Tel Aviv)
	//
	//    * Middle East (UAE)
	UseOnly *string `locationName:"useOnly" type:"string" enum:"RecordingStrategyType"`
	// contains filtered or unexported fields
}

Specifies the recording strategy of the configuration recorder.

func (RecordingStrategy) GoString added in v1.44.273

func (s RecordingStrategy) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RecordingStrategy) SetUseOnly added in v1.44.273

func (s *RecordingStrategy) SetUseOnly(v string) *RecordingStrategy

SetUseOnly sets the UseOnly field's value.

func (RecordingStrategy) String added in v1.44.273

func (s RecordingStrategy) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Relationship

type Relationship struct {

	// The type of relationship with the related resource.
	RelationshipName *string `locationName:"relationshipName" type:"string"`

	// The ID of the related resource (for example, sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" min:"1" type:"string"`

	// The custom name of the related resource, if available.
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The resource type of the related resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The relationship of the related resource to the main resource.

func (Relationship) GoString added in v0.6.5

func (s Relationship) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Relationship) SetRelationshipName added in v1.5.0

func (s *Relationship) SetRelationshipName(v string) *Relationship

SetRelationshipName sets the RelationshipName field's value.

func (*Relationship) SetResourceId added in v1.5.0

func (s *Relationship) SetResourceId(v string) *Relationship

SetResourceId sets the ResourceId field's value.

func (*Relationship) SetResourceName added in v1.5.0

func (s *Relationship) SetResourceName(v string) *Relationship

SetResourceName sets the ResourceName field's value.

func (*Relationship) SetResourceType added in v1.5.0

func (s *Relationship) SetResourceType(v string) *Relationship

SetResourceType sets the ResourceType field's value.

func (Relationship) String added in v0.6.5

func (s Relationship) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemediationConfiguration added in v1.18.2

type RemediationConfiguration struct {

	// Amazon Resource Name (ARN) of remediation configuration.
	Arn *string `min:"1" type:"string"`

	// The remediation is triggered automatically.
	Automatic *bool `type:"boolean"`

	// The name of the Config rule.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// Name of the service that owns the service-linked rule, if applicable.
	CreatedByService *string `min:"1" type:"string"`

	// An ExecutionControls object.
	ExecutionControls *ExecutionControls `type:"structure"`

	// The maximum number of failed attempts for auto-remediation. If you do not
	// select a number, the default is 5.
	//
	// For example, if you specify MaximumAutomaticAttempts as 5 with RetryAttemptSeconds
	// as 50 seconds, Config will put a RemediationException on your behalf for
	// the failing resource after the 5th failed attempt within 50 seconds.
	MaximumAutomaticAttempts *int64 `min:"1" type:"integer"`

	// An object of the RemediationParameterValue.
	Parameters map[string]*RemediationParameterValue `type:"map"`

	// The type of a resource.
	ResourceType *string `type:"string"`

	// Time window to determine whether or not to add a remediation exception to
	// prevent infinite remediation attempts. If MaximumAutomaticAttempts remediation
	// attempts have been made under RetryAttemptSeconds, a remediation exception
	// will be added to the resource. If you do not select a number, the default
	// is 60 seconds.
	//
	// For example, if you specify RetryAttemptSeconds as 50 seconds and MaximumAutomaticAttempts
	// as 5, Config will run auto-remediations 5 times within 50 seconds before
	// adding a remediation exception to the resource.
	RetryAttemptSeconds *int64 `min:"1" type:"long"`

	// Target ID is the name of the SSM document.
	//
	// TargetId is a required field
	TargetId *string `min:"1" type:"string" required:"true"`

	// The type of the target. Target executes remediation. For example, SSM document.
	//
	// TargetType is a required field
	TargetType *string `type:"string" required:"true" enum:"RemediationTargetType"`

	// Version of the target. For example, version of the SSM document.
	//
	// If you make backward incompatible changes to the SSM document, you must call
	// PutRemediationConfiguration API again to ensure the remediations can run.
	TargetVersion *string `type:"string"`
	// contains filtered or unexported fields
}

An object that represents the details about the remediation configuration that includes the remediation action, parameters, and data to execute the action.

func (RemediationConfiguration) GoString added in v1.18.2

func (s RemediationConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationConfiguration) SetArn added in v1.23.16

SetArn sets the Arn field's value.

func (*RemediationConfiguration) SetAutomatic added in v1.23.16

SetAutomatic sets the Automatic field's value.

func (*RemediationConfiguration) SetConfigRuleName added in v1.18.2

func (s *RemediationConfiguration) SetConfigRuleName(v string) *RemediationConfiguration

SetConfigRuleName sets the ConfigRuleName field's value.

func (*RemediationConfiguration) SetCreatedByService added in v1.23.16

func (s *RemediationConfiguration) SetCreatedByService(v string) *RemediationConfiguration

SetCreatedByService sets the CreatedByService field's value.

func (*RemediationConfiguration) SetExecutionControls added in v1.23.16

SetExecutionControls sets the ExecutionControls field's value.

func (*RemediationConfiguration) SetMaximumAutomaticAttempts added in v1.23.16

func (s *RemediationConfiguration) SetMaximumAutomaticAttempts(v int64) *RemediationConfiguration

SetMaximumAutomaticAttempts sets the MaximumAutomaticAttempts field's value.

func (*RemediationConfiguration) SetParameters added in v1.18.2

SetParameters sets the Parameters field's value.

func (*RemediationConfiguration) SetResourceType added in v1.18.2

SetResourceType sets the ResourceType field's value.

func (*RemediationConfiguration) SetRetryAttemptSeconds added in v1.23.16

func (s *RemediationConfiguration) SetRetryAttemptSeconds(v int64) *RemediationConfiguration

SetRetryAttemptSeconds sets the RetryAttemptSeconds field's value.

func (*RemediationConfiguration) SetTargetId added in v1.18.2

SetTargetId sets the TargetId field's value.

func (*RemediationConfiguration) SetTargetType added in v1.18.2

SetTargetType sets the TargetType field's value.

func (*RemediationConfiguration) SetTargetVersion added in v1.18.2

SetTargetVersion sets the TargetVersion field's value.

func (RemediationConfiguration) String added in v1.18.2

func (s RemediationConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationConfiguration) Validate added in v1.18.2

func (s *RemediationConfiguration) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemediationException added in v1.23.16

type RemediationException struct {

	// The name of the Config rule.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// The time when the remediation exception will be deleted.
	ExpirationTime *time.Time `type:"timestamp"`

	// An explanation of an remediation exception.
	Message *string `min:"1" type:"string"`

	// The ID of the resource (for example., sg-xxxxxx).
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`

	// The type of a resource.
	//
	// ResourceType is a required field
	ResourceType *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

An object that represents the details about the remediation exception. The details include the rule name, an explanation of an exception, the time when the exception will be deleted, the resource ID, and resource type.

func (RemediationException) GoString added in v1.23.16

func (s RemediationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationException) SetConfigRuleName added in v1.23.16

func (s *RemediationException) SetConfigRuleName(v string) *RemediationException

SetConfigRuleName sets the ConfigRuleName field's value.

func (*RemediationException) SetExpirationTime added in v1.23.16

func (s *RemediationException) SetExpirationTime(v time.Time) *RemediationException

SetExpirationTime sets the ExpirationTime field's value.

func (*RemediationException) SetMessage added in v1.23.16

SetMessage sets the Message field's value.

func (*RemediationException) SetResourceId added in v1.23.16

func (s *RemediationException) SetResourceId(v string) *RemediationException

SetResourceId sets the ResourceId field's value.

func (*RemediationException) SetResourceType added in v1.23.16

func (s *RemediationException) SetResourceType(v string) *RemediationException

SetResourceType sets the ResourceType field's value.

func (RemediationException) String added in v1.23.16

func (s RemediationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemediationExceptionResourceKey added in v1.23.16

type RemediationExceptionResourceKey struct {

	// The ID of the resource (for example., sg-xxxxxx).
	ResourceId *string `min:"1" type:"string"`

	// The type of a resource.
	ResourceType *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

The details that identify a resource within Config, including the resource type and resource ID.

func (RemediationExceptionResourceKey) GoString added in v1.23.16

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationExceptionResourceKey) SetResourceId added in v1.23.16

SetResourceId sets the ResourceId field's value.

func (*RemediationExceptionResourceKey) SetResourceType added in v1.23.16

SetResourceType sets the ResourceType field's value.

func (RemediationExceptionResourceKey) String added in v1.23.16

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationExceptionResourceKey) Validate added in v1.23.16

func (s *RemediationExceptionResourceKey) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RemediationExecutionStatus added in v1.18.2

type RemediationExecutionStatus struct {

	// Start time when the remediation was executed.
	InvocationTime *time.Time `type:"timestamp"`

	// The time when the remediation execution was last updated.
	LastUpdatedTime *time.Time `type:"timestamp"`

	// The details that identify a resource within Config, including the resource
	// type and resource ID.
	ResourceKey *ResourceKey `type:"structure"`

	// ENUM of the values.
	State *string `type:"string" enum:"RemediationExecutionState"`

	// Details of every step.
	StepDetails []*RemediationExecutionStep `type:"list"`
	// contains filtered or unexported fields
}

Provides details of the current status of the invoked remediation action for that resource.

func (RemediationExecutionStatus) GoString added in v1.18.2

func (s RemediationExecutionStatus) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationExecutionStatus) SetInvocationTime added in v1.18.2

SetInvocationTime sets the InvocationTime field's value.

func (*RemediationExecutionStatus) SetLastUpdatedTime added in v1.18.2

SetLastUpdatedTime sets the LastUpdatedTime field's value.

func (*RemediationExecutionStatus) SetResourceKey added in v1.18.2

SetResourceKey sets the ResourceKey field's value.

func (*RemediationExecutionStatus) SetState added in v1.18.2

SetState sets the State field's value.

func (*RemediationExecutionStatus) SetStepDetails added in v1.18.2

SetStepDetails sets the StepDetails field's value.

func (RemediationExecutionStatus) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemediationExecutionStep added in v1.18.2

type RemediationExecutionStep struct {

	// An error message if the step was interrupted during execution.
	ErrorMessage *string `type:"string"`

	// The details of the step.
	Name *string `type:"string"`

	// The time when the step started.
	StartTime *time.Time `type:"timestamp"`

	// The valid status of the step.
	State *string `type:"string" enum:"RemediationExecutionStepState"`

	// The time when the step stopped.
	StopTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

Name of the step from the SSM document.

func (RemediationExecutionStep) GoString added in v1.18.2

func (s RemediationExecutionStep) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationExecutionStep) SetErrorMessage added in v1.18.2

SetErrorMessage sets the ErrorMessage field's value.

func (*RemediationExecutionStep) SetName added in v1.18.2

SetName sets the Name field's value.

func (*RemediationExecutionStep) SetStartTime added in v1.18.2

SetStartTime sets the StartTime field's value.

func (*RemediationExecutionStep) SetState added in v1.18.2

SetState sets the State field's value.

func (*RemediationExecutionStep) SetStopTime added in v1.18.2

SetStopTime sets the StopTime field's value.

func (RemediationExecutionStep) String added in v1.18.2

func (s RemediationExecutionStep) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemediationInProgressException added in v1.28.0

type RemediationInProgressException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Remediation action is in progress. You can either cancel execution in Amazon Web Services Systems Manager or wait and try again later.

func (*RemediationInProgressException) Code added in v1.28.0

Code returns the exception type name.

func (*RemediationInProgressException) Error added in v1.28.0

func (RemediationInProgressException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationInProgressException) Message added in v1.28.0

Message returns the exception's message.

func (*RemediationInProgressException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*RemediationInProgressException) RequestID added in v1.28.0

func (s *RemediationInProgressException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*RemediationInProgressException) StatusCode added in v1.28.0

func (s *RemediationInProgressException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (RemediationInProgressException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RemediationParameterValue added in v1.18.2

type RemediationParameterValue struct {

	// The value is dynamic and changes at run-time.
	ResourceValue *ResourceValue `type:"structure"`

	// The value is static and does not change at run-time.
	StaticValue *StaticValue `type:"structure"`
	// contains filtered or unexported fields
}

The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value.

func (RemediationParameterValue) GoString added in v1.18.2

func (s RemediationParameterValue) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationParameterValue) SetResourceValue added in v1.18.2

SetResourceValue sets the ResourceValue field's value.

func (*RemediationParameterValue) SetStaticValue added in v1.18.2

SetStaticValue sets the StaticValue field's value.

func (RemediationParameterValue) String added in v1.18.2

func (s RemediationParameterValue) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RemediationParameterValue) Validate added in v1.23.16

func (s *RemediationParameterValue) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourceConcurrentModificationException added in v1.36.13

type ResourceConcurrentModificationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

Two users are trying to modify the same query at the same time. Wait for a moment and try again.

func (*ResourceConcurrentModificationException) Code added in v1.36.13

Code returns the exception type name.

func (*ResourceConcurrentModificationException) Error added in v1.36.13

func (ResourceConcurrentModificationException) GoString added in v1.36.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceConcurrentModificationException) Message added in v1.36.13

Message returns the exception's message.

func (*ResourceConcurrentModificationException) OrigErr added in v1.36.13

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceConcurrentModificationException) RequestID added in v1.36.13

RequestID returns the service's response RequestID for request.

func (*ResourceConcurrentModificationException) StatusCode added in v1.36.13

Status code returns the HTTP status code for the request's response error.

func (ResourceConcurrentModificationException) String added in v1.36.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceCount added in v1.10.20

type ResourceCount struct {

	// The number of resources.
	Count *int64 `locationName:"count" type:"long"`

	// The resource type (for example, "AWS::EC2::Instance").
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`
	// contains filtered or unexported fields
}

An object that contains the resource type and the number of resources.

func (ResourceCount) GoString added in v1.10.20

func (s ResourceCount) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceCount) SetCount added in v1.10.20

func (s *ResourceCount) SetCount(v int64) *ResourceCount

SetCount sets the Count field's value.

func (*ResourceCount) SetResourceType added in v1.10.20

func (s *ResourceCount) SetResourceType(v string) *ResourceCount

SetResourceType sets the ResourceType field's value.

func (ResourceCount) String added in v1.10.20

func (s ResourceCount) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceCountFilters added in v1.15.79

type ResourceCountFilters struct {

	// The 12-digit ID of the account.
	AccountId *string `type:"string"`

	// The region where the account is located.
	Region *string `min:"1" type:"string"`

	// The type of the Amazon Web Services resource.
	ResourceType *string `type:"string" enum:"ResourceType"`
	// contains filtered or unexported fields
}

Filters the resource count based on account ID, region, and resource type.

func (ResourceCountFilters) GoString added in v1.15.79

func (s ResourceCountFilters) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceCountFilters) SetAccountId added in v1.15.79

func (s *ResourceCountFilters) SetAccountId(v string) *ResourceCountFilters

SetAccountId sets the AccountId field's value.

func (*ResourceCountFilters) SetRegion added in v1.15.79

SetRegion sets the Region field's value.

func (*ResourceCountFilters) SetResourceType added in v1.15.79

func (s *ResourceCountFilters) SetResourceType(v string) *ResourceCountFilters

SetResourceType sets the ResourceType field's value.

func (ResourceCountFilters) String added in v1.15.79

func (s ResourceCountFilters) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceCountFilters) Validate added in v1.15.79

func (s *ResourceCountFilters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourceDetails added in v1.44.147

type ResourceDetails struct {

	// The resource definition to be evaluated as per the resource configuration
	// schema type.
	//
	// ResourceConfiguration is a required field
	ResourceConfiguration *string `min:"1" type:"string" required:"true"`

	// The schema type of the resource configuration.
	//
	// You can find the Resource type schema (https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html),
	// or CFN_RESOURCE_SCHEMA, in "Amazon Web Services public extensions" within
	// the CloudFormation registry or with the following CLI commmand: aws cloudformation
	// describe-type --type-name "AWS::S3::Bucket" --type RESOURCE.
	//
	// For more information, see Managing extensions through the CloudFormation
	// registry (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry.html#registry-view)
	// and Amazon Web Services resource and property types reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html)
	// in the CloudFormation User Guide.
	ResourceConfigurationSchemaType *string `type:"string" enum:"ResourceConfigurationSchemaType"`

	// A unique resource ID for an evaluation.
	//
	// ResourceId is a required field
	ResourceId *string `min:"1" type:"string" required:"true"`

	// The type of resource being evaluated.
	//
	// ResourceType is a required field
	ResourceType *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Returns information about the resource being evaluated.

func (ResourceDetails) GoString added in v1.44.147

func (s ResourceDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceDetails) SetResourceConfiguration added in v1.44.147

func (s *ResourceDetails) SetResourceConfiguration(v string) *ResourceDetails

SetResourceConfiguration sets the ResourceConfiguration field's value.

func (*ResourceDetails) SetResourceConfigurationSchemaType added in v1.44.147

func (s *ResourceDetails) SetResourceConfigurationSchemaType(v string) *ResourceDetails

SetResourceConfigurationSchemaType sets the ResourceConfigurationSchemaType field's value.

func (*ResourceDetails) SetResourceId added in v1.44.147

func (s *ResourceDetails) SetResourceId(v string) *ResourceDetails

SetResourceId sets the ResourceId field's value.

func (*ResourceDetails) SetResourceType added in v1.44.147

func (s *ResourceDetails) SetResourceType(v string) *ResourceDetails

SetResourceType sets the ResourceType field's value.

func (ResourceDetails) String added in v1.44.147

func (s ResourceDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceDetails) Validate added in v1.44.147

func (s *ResourceDetails) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourceEvaluation added in v1.44.147

type ResourceEvaluation struct {

	// The mode of an evaluation. The valid values are Detective or Proactive.
	EvaluationMode *string `type:"string" enum:"EvaluationMode"`

	// The starting time of an execution.
	EvaluationStartTimestamp *time.Time `type:"timestamp"`

	// The ResourceEvaluationId of a evaluation.
	ResourceEvaluationId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Returns details of a resource evaluation.

func (ResourceEvaluation) GoString added in v1.44.147

func (s ResourceEvaluation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceEvaluation) SetEvaluationMode added in v1.44.147

func (s *ResourceEvaluation) SetEvaluationMode(v string) *ResourceEvaluation

SetEvaluationMode sets the EvaluationMode field's value.

func (*ResourceEvaluation) SetEvaluationStartTimestamp added in v1.44.147

func (s *ResourceEvaluation) SetEvaluationStartTimestamp(v time.Time) *ResourceEvaluation

SetEvaluationStartTimestamp sets the EvaluationStartTimestamp field's value.

func (*ResourceEvaluation) SetResourceEvaluationId added in v1.44.147

func (s *ResourceEvaluation) SetResourceEvaluationId(v string) *ResourceEvaluation

SetResourceEvaluationId sets the ResourceEvaluationId field's value.

func (ResourceEvaluation) String added in v1.44.147

func (s ResourceEvaluation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceEvaluationFilters added in v1.44.147

type ResourceEvaluationFilters struct {

	// Filters evaluations for a given infrastructure deployment. For example: CFN
	// Stack.
	EvaluationContextIdentifier *string `min:"1" type:"string"`

	// Filters all resource evaluations results based on an evaluation mode.
	//
	// Currently, DECTECTIVE is not supported as a valid value. Ignore other documentation
	// stating otherwise.
	EvaluationMode *string `type:"string" enum:"EvaluationMode"`

	// Returns a TimeWindow object.
	TimeWindow *TimeWindow `type:"structure"`
	// contains filtered or unexported fields
}

Returns details of a resource evaluation based on the selected filter.

func (ResourceEvaluationFilters) GoString added in v1.44.147

func (s ResourceEvaluationFilters) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceEvaluationFilters) SetEvaluationContextIdentifier added in v1.44.147

func (s *ResourceEvaluationFilters) SetEvaluationContextIdentifier(v string) *ResourceEvaluationFilters

SetEvaluationContextIdentifier sets the EvaluationContextIdentifier field's value.

func (*ResourceEvaluationFilters) SetEvaluationMode added in v1.44.147

SetEvaluationMode sets the EvaluationMode field's value.

func (*ResourceEvaluationFilters) SetTimeWindow added in v1.44.147

SetTimeWindow sets the TimeWindow field's value.

func (ResourceEvaluationFilters) String added in v1.44.147

func (s ResourceEvaluationFilters) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceEvaluationFilters) Validate added in v1.44.147

func (s *ResourceEvaluationFilters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourceFilters added in v1.15.79

type ResourceFilters struct {

	// The 12-digit source account ID.
	AccountId *string `type:"string"`

	// The source region.
	Region *string `min:"1" type:"string"`

	// The ID of the resource.
	ResourceId *string `min:"1" type:"string"`

	// The name of the resource.
	ResourceName *string `type:"string"`
	// contains filtered or unexported fields
}

Filters the results by resource account ID, region, resource ID, and resource name.

func (ResourceFilters) GoString added in v1.15.79

func (s ResourceFilters) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceFilters) SetAccountId added in v1.15.79

func (s *ResourceFilters) SetAccountId(v string) *ResourceFilters

SetAccountId sets the AccountId field's value.

func (*ResourceFilters) SetRegion added in v1.15.79

func (s *ResourceFilters) SetRegion(v string) *ResourceFilters

SetRegion sets the Region field's value.

func (*ResourceFilters) SetResourceId added in v1.15.79

func (s *ResourceFilters) SetResourceId(v string) *ResourceFilters

SetResourceId sets the ResourceId field's value.

func (*ResourceFilters) SetResourceName added in v1.15.79

func (s *ResourceFilters) SetResourceName(v string) *ResourceFilters

SetResourceName sets the ResourceName field's value.

func (ResourceFilters) String added in v1.15.79

func (s ResourceFilters) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceFilters) Validate added in v1.15.79

func (s *ResourceFilters) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourceIdentifier added in v0.9.5

type ResourceIdentifier struct {

	// The time that the resource was deleted.
	ResourceDeletionTime *time.Time `locationName:"resourceDeletionTime" type:"timestamp"`

	// The ID of the resource (for example, sg-xxxxxx).
	ResourceId *string `locationName:"resourceId" min:"1" type:"string"`

	// The custom name of the resource (if available).
	ResourceName *string `locationName:"resourceName" type:"string"`

	// The type of resource.
	ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the custom resource name.

func (ResourceIdentifier) GoString added in v0.9.5

func (s ResourceIdentifier) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceIdentifier) SetResourceDeletionTime added in v1.5.0

func (s *ResourceIdentifier) SetResourceDeletionTime(v time.Time) *ResourceIdentifier

SetResourceDeletionTime sets the ResourceDeletionTime field's value.

func (*ResourceIdentifier) SetResourceId added in v1.5.0

func (s *ResourceIdentifier) SetResourceId(v string) *ResourceIdentifier

SetResourceId sets the ResourceId field's value.

func (*ResourceIdentifier) SetResourceName added in v1.5.0

func (s *ResourceIdentifier) SetResourceName(v string) *ResourceIdentifier

SetResourceName sets the ResourceName field's value.

func (*ResourceIdentifier) SetResourceType added in v1.5.0

func (s *ResourceIdentifier) SetResourceType(v string) *ResourceIdentifier

SetResourceType sets the ResourceType field's value.

func (ResourceIdentifier) String added in v0.9.5

func (s ResourceIdentifier) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceInUseException added in v1.28.0

type ResourceInUseException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You see this exception in the following cases:

  • For DeleteConfigRule, Config is deleting this rule. Try your request again later.

  • For DeleteConfigRule, the rule is deleting your evaluation results. Try your request again later.

  • For DeleteConfigRule, a remediation action is associated with the rule and Config cannot delete this rule. Delete the remediation action associated with the rule before deleting the rule and try your request again later.

  • For PutConfigOrganizationRule, organization Config rule deletion is in progress. Try your request again later.

  • For DeleteOrganizationConfigRule, organization Config rule creation is in progress. Try your request again later.

  • For PutConformancePack and PutOrganizationConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

  • For DeleteConformancePack, a conformance pack creation, update, and deletion is in progress. Try your request again later.

func (*ResourceInUseException) Code added in v1.28.0

func (s *ResourceInUseException) Code() string

Code returns the exception type name.

func (*ResourceInUseException) Error added in v1.28.0

func (s *ResourceInUseException) Error() string

func (ResourceInUseException) GoString added in v1.28.0

func (s ResourceInUseException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceInUseException) Message added in v1.28.0

func (s *ResourceInUseException) Message() string

Message returns the exception's message.

func (*ResourceInUseException) OrigErr added in v1.28.0

func (s *ResourceInUseException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceInUseException) RequestID added in v1.28.0

func (s *ResourceInUseException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceInUseException) StatusCode added in v1.28.0

func (s *ResourceInUseException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceInUseException) String added in v1.28.0

func (s ResourceInUseException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceKey added in v1.13.17

type ResourceKey struct {

	// The ID of the resource (for example., sg-xxxxxx).
	//
	// ResourceId is a required field
	ResourceId *string `locationName:"resourceId" min:"1" type:"string" required:"true"`

	// The resource type.
	//
	// ResourceType is a required field
	ResourceType *string `locationName:"resourceType" type:"string" required:"true" enum:"ResourceType"`
	// contains filtered or unexported fields
}

The details that identify a resource within Config, including the resource type and resource ID.

func (ResourceKey) GoString added in v1.13.17

func (s ResourceKey) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceKey) SetResourceId added in v1.13.17

func (s *ResourceKey) SetResourceId(v string) *ResourceKey

SetResourceId sets the ResourceId field's value.

func (*ResourceKey) SetResourceType added in v1.13.17

func (s *ResourceKey) SetResourceType(v string) *ResourceKey

SetResourceType sets the ResourceType field's value.

func (ResourceKey) String added in v1.13.17

func (s ResourceKey) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceKey) Validate added in v1.13.17

func (s *ResourceKey) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResourceNotDiscoveredException added in v1.28.0

type ResourceNotDiscoveredException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a resource that is either unknown or has not been discovered.

func (*ResourceNotDiscoveredException) Code added in v1.28.0

Code returns the exception type name.

func (*ResourceNotDiscoveredException) Error added in v1.28.0

func (ResourceNotDiscoveredException) GoString added in v1.28.0

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceNotDiscoveredException) Message added in v1.28.0

Message returns the exception's message.

func (*ResourceNotDiscoveredException) OrigErr added in v1.28.0

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceNotDiscoveredException) RequestID added in v1.28.0

func (s *ResourceNotDiscoveredException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceNotDiscoveredException) StatusCode added in v1.28.0

func (s *ResourceNotDiscoveredException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceNotDiscoveredException) String added in v1.28.0

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceNotFoundException added in v1.28.0

type ResourceNotFoundException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have specified a resource that does not exist.

func (*ResourceNotFoundException) Code added in v1.28.0

Code returns the exception type name.

func (*ResourceNotFoundException) Error added in v1.28.0

func (s *ResourceNotFoundException) Error() string

func (ResourceNotFoundException) GoString added in v1.28.0

func (s ResourceNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceNotFoundException) Message added in v1.28.0

func (s *ResourceNotFoundException) Message() string

Message returns the exception's message.

func (*ResourceNotFoundException) OrigErr added in v1.28.0

func (s *ResourceNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceNotFoundException) RequestID added in v1.28.0

func (s *ResourceNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceNotFoundException) StatusCode added in v1.28.0

func (s *ResourceNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceNotFoundException) String added in v1.28.0

func (s ResourceNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceValue added in v1.18.2

type ResourceValue struct {

	// The value is a resource ID.
	//
	// Value is a required field
	Value *string `type:"string" required:"true" enum:"ResourceValueType"`
	// contains filtered or unexported fields
}

The dynamic value of the resource.

func (ResourceValue) GoString added in v1.18.2

func (s ResourceValue) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceValue) SetValue added in v1.18.2

func (s *ResourceValue) SetValue(v string) *ResourceValue

SetValue sets the Value field's value.

func (ResourceValue) String added in v1.18.2

func (s ResourceValue) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceValue) Validate added in v1.23.16

func (s *ResourceValue) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RetentionConfiguration added in v1.13.56

type RetentionConfiguration struct {

	// The name of the retention configuration object.
	//
	// Name is a required field
	Name *string `min:"1" type:"string" required:"true"`

	// Number of days Config stores your historical information.
	//
	// Currently, only applicable to the configuration item history.
	//
	// RetentionPeriodInDays is a required field
	RetentionPeriodInDays *int64 `min:"30" type:"integer" required:"true"`
	// contains filtered or unexported fields
}

An object with the name of the retention configuration and the retention period in days. The object stores the configuration for data retention in Config.

func (RetentionConfiguration) GoString added in v1.13.56

func (s RetentionConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RetentionConfiguration) SetName added in v1.13.56

SetName sets the Name field's value.

func (*RetentionConfiguration) SetRetentionPeriodInDays added in v1.13.56

func (s *RetentionConfiguration) SetRetentionPeriodInDays(v int64) *RetentionConfiguration

SetRetentionPeriodInDays sets the RetentionPeriodInDays field's value.

func (RetentionConfiguration) String added in v1.13.56

func (s RetentionConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Scope added in v0.9.13

type Scope struct {

	// The ID of the only Amazon Web Services resource that you want to trigger
	// an evaluation for the rule. If you specify a resource ID, you must specify
	// one resource type for ComplianceResourceTypes.
	ComplianceResourceId *string `min:"1" type:"string"`

	// The resource types of only those Amazon Web Services resources that you want
	// to trigger an evaluation for the rule. You can only specify one type if you
	// also specify a resource ID for ComplianceResourceId.
	ComplianceResourceTypes []*string `type:"list"`

	// The tag key that is applied to only those Amazon Web Services resources that
	// you want to trigger an evaluation for the rule.
	TagKey *string `min:"1" type:"string"`

	// The tag value applied to only those Amazon Web Services resources that you
	// want to trigger an evaluation for the rule. If you specify a value for TagValue,
	// you must also specify a value for TagKey.
	TagValue *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Defines which resources trigger an evaluation for an Config rule. The scope can include one or more resource types, a combination of a tag key and value, or a combination of one resource type and one resource ID. Specify a scope to constrain which resources trigger an evaluation for a rule. Otherwise, evaluations for the rule are triggered when any resource in your recording group changes in configuration.

func (Scope) GoString added in v0.9.13

func (s Scope) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Scope) SetComplianceResourceId added in v1.5.0

func (s *Scope) SetComplianceResourceId(v string) *Scope

SetComplianceResourceId sets the ComplianceResourceId field's value.

func (*Scope) SetComplianceResourceTypes added in v1.5.0

func (s *Scope) SetComplianceResourceTypes(v []*string) *Scope

SetComplianceResourceTypes sets the ComplianceResourceTypes field's value.

func (*Scope) SetTagKey added in v1.5.0

func (s *Scope) SetTagKey(v string) *Scope

SetTagKey sets the TagKey field's value.

func (*Scope) SetTagValue added in v1.5.0

func (s *Scope) SetTagValue(v string) *Scope

SetTagValue sets the TagValue field's value.

func (Scope) String added in v0.9.13

func (s Scope) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Scope) Validate added in v1.1.21

func (s *Scope) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SelectAggregateResourceConfigInput added in v1.29.13

type SelectAggregateResourceConfigInput struct {

	// The name of the configuration aggregator.
	//
	// ConfigurationAggregatorName is a required field
	ConfigurationAggregatorName *string `min:"1" type:"string" required:"true"`

	// The SQL query SELECT command.
	//
	// Expression is a required field
	Expression *string `min:"1" type:"string" required:"true"`

	// The maximum number of query results returned on each page.
	Limit *int64 `type:"integer"`

	// The maximum number of query results returned on each page. Config also allows
	// the Limit request parameter.
	MaxResults *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (SelectAggregateResourceConfigInput) GoString added in v1.29.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SelectAggregateResourceConfigInput) SetConfigurationAggregatorName added in v1.29.13

SetConfigurationAggregatorName sets the ConfigurationAggregatorName field's value.

func (*SelectAggregateResourceConfigInput) SetExpression added in v1.29.13

SetExpression sets the Expression field's value.

func (*SelectAggregateResourceConfigInput) SetLimit added in v1.29.13

SetLimit sets the Limit field's value.

func (*SelectAggregateResourceConfigInput) SetMaxResults added in v1.29.13

SetMaxResults sets the MaxResults field's value.

func (*SelectAggregateResourceConfigInput) SetNextToken added in v1.29.13

SetNextToken sets the NextToken field's value.

func (SelectAggregateResourceConfigInput) String added in v1.29.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SelectAggregateResourceConfigInput) Validate added in v1.29.13

Validate inspects the fields of the type to determine if they are valid.

type SelectAggregateResourceConfigOutput added in v1.29.13

type SelectAggregateResourceConfigOutput struct {

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Details about the query.
	QueryInfo *QueryInfo `type:"structure"`

	// Returns the results for the SQL query.
	Results []*string `type:"list"`
	// contains filtered or unexported fields
}

func (SelectAggregateResourceConfigOutput) GoString added in v1.29.13

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SelectAggregateResourceConfigOutput) SetNextToken added in v1.29.13

SetNextToken sets the NextToken field's value.

func (*SelectAggregateResourceConfigOutput) SetQueryInfo added in v1.29.13

SetQueryInfo sets the QueryInfo field's value.

func (*SelectAggregateResourceConfigOutput) SetResults added in v1.29.13

SetResults sets the Results field's value.

func (SelectAggregateResourceConfigOutput) String added in v1.29.13

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SelectResourceConfigInput added in v1.18.5

type SelectResourceConfigInput struct {

	// The SQL query SELECT command.
	//
	// Expression is a required field
	Expression *string `min:"1" type:"string" required:"true"`

	// The maximum number of query results returned on each page.
	Limit *int64 `type:"integer"`

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

func (SelectResourceConfigInput) GoString added in v1.18.5

func (s SelectResourceConfigInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SelectResourceConfigInput) SetExpression added in v1.18.5

SetExpression sets the Expression field's value.

func (*SelectResourceConfigInput) SetLimit added in v1.18.5

SetLimit sets the Limit field's value.

func (*SelectResourceConfigInput) SetNextToken added in v1.18.5

SetNextToken sets the NextToken field's value.

func (SelectResourceConfigInput) String added in v1.18.5

func (s SelectResourceConfigInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SelectResourceConfigInput) Validate added in v1.18.5

func (s *SelectResourceConfigInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SelectResourceConfigOutput added in v1.18.5

type SelectResourceConfigOutput struct {

	// The nextToken string returned in a previous request that you use to request
	// the next page of results in a paginated response.
	NextToken *string `type:"string"`

	// Returns the QueryInfo object.
	QueryInfo *QueryInfo `type:"structure"`

	// Returns the results for the SQL query.
	Results []*string `type:"list"`
	// contains filtered or unexported fields
}

func (SelectResourceConfigOutput) GoString added in v1.18.5

func (s SelectResourceConfigOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SelectResourceConfigOutput) SetNextToken added in v1.18.5

SetNextToken sets the NextToken field's value.

func (*SelectResourceConfigOutput) SetQueryInfo added in v1.18.5

SetQueryInfo sets the QueryInfo field's value.

func (*SelectResourceConfigOutput) SetResults added in v1.18.5

SetResults sets the Results field's value.

func (SelectResourceConfigOutput) String added in v1.18.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Source added in v0.9.13

type Source struct {

	// Provides the runtime system, policy definition, and whether debug logging
	// is enabled. Required when owner is set to CUSTOM_POLICY.
	CustomPolicyDetails *CustomPolicyDetails `type:"structure"`

	// Indicates whether Amazon Web Services or the customer owns and manages the
	// Config rule.
	//
	// Config Managed Rules are predefined rules owned by Amazon Web Services. For
	// more information, see Config Managed Rules (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_use-managed-rules.html)
	// in the Config developer guide.
	//
	// Config Custom Rules are rules that you can develop either with Guard (CUSTOM_POLICY)
	// or Lambda (CUSTOM_LAMBDA). For more information, see Config Custom Rules
	// (https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_develop-rules.html)
	// in the Config developer guide.
	//
	// Owner is a required field
	Owner *string `type:"string" required:"true" enum:"Owner"`

	// Provides the source and the message types that cause Config to evaluate your
	// Amazon Web Services resources against a rule. It also provides the frequency
	// with which you want Config to run evaluations for the rule if the trigger
	// type is periodic.
	//
	// If the owner is set to CUSTOM_POLICY, the only acceptable values for the
	// Config rule trigger message type are ConfigurationItemChangeNotification
	// and OversizedConfigurationItemChangeNotification.
	SourceDetails []*SourceDetail `type:"list"`

	// For Config Managed rules, a predefined identifier from a list. For example,
	// IAM_PASSWORD_POLICY is a managed rule. To reference a managed rule, see List
	// of Config Managed Rules (https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html).
	//
	// For Config Custom Lambda rules, the identifier is the Amazon Resource Name
	// (ARN) of the rule's Lambda function, such as arn:aws:lambda:us-east-2:123456789012:function:custom_rule_name.
	//
	// For Config Custom Policy rules, this field will be ignored.
	SourceIdentifier *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

Provides the CustomPolicyDetails, the rule owner (Amazon Web Services for managed rules, CUSTOM_POLICY for Custom Policy rules, and CUSTOM_LAMBDA for Custom Lambda rules), the rule identifier, and the events that cause the evaluation of your Amazon Web Services resources.

func (Source) GoString added in v0.9.13

func (s Source) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Source) SetCustomPolicyDetails added in v1.43.25

func (s *Source) SetCustomPolicyDetails(v *CustomPolicyDetails) *Source

SetCustomPolicyDetails sets the CustomPolicyDetails field's value.

func (*Source) SetOwner added in v1.5.0

func (s *Source) SetOwner(v string) *Source

SetOwner sets the Owner field's value.

func (*Source) SetSourceDetails added in v1.5.0

func (s *Source) SetSourceDetails(v []*SourceDetail) *Source

SetSourceDetails sets the SourceDetails field's value.

func (*Source) SetSourceIdentifier added in v1.5.0

func (s *Source) SetSourceIdentifier(v string) *Source

SetSourceIdentifier sets the SourceIdentifier field's value.

func (Source) String added in v0.9.13

func (s Source) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Source) Validate added in v1.1.21

func (s *Source) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SourceDetail added in v0.9.13

type SourceDetail struct {

	// The source of the event, such as an Amazon Web Services service, that triggers
	// Config to evaluate your Amazon Web Services resources.
	EventSource *string `type:"string" enum:"EventSource"`

	// The frequency at which you want Config to run evaluations for a custom rule
	// with a periodic trigger. If you specify a value for MaximumExecutionFrequency,
	// then MessageType must use the ScheduledNotification value.
	//
	// By default, rules with a periodic trigger are evaluated every 24 hours. To
	// change the frequency, specify a valid value for the MaximumExecutionFrequency
	// parameter.
	//
	// Based on the valid value you choose, Config runs evaluations once for each
	// valid value. For example, if you choose Three_Hours, Config runs evaluations
	// once every three hours. In this case, Three_Hours is the frequency of this
	// rule.
	MaximumExecutionFrequency *string `type:"string" enum:"MaximumExecutionFrequency"`

	// The type of notification that triggers Config to run an evaluation for a
	// rule. You can specify the following notification types:
	//
	//    * ConfigurationItemChangeNotification - Triggers an evaluation when Config
	//    delivers a configuration item as a result of a resource change.
	//
	//    * OversizedConfigurationItemChangeNotification - Triggers an evaluation
	//    when Config delivers an oversized configuration item. Config may generate
	//    this notification type when a resource changes and the notification exceeds
	//    the maximum size allowed by Amazon SNS.
	//
	//    * ScheduledNotification - Triggers a periodic evaluation at the frequency
	//    specified for MaximumExecutionFrequency.
	//
	//    * ConfigurationSnapshotDeliveryCompleted - Triggers a periodic evaluation
	//    when Config delivers a configuration snapshot.
	//
	// If you want your custom rule to be triggered by configuration changes, specify
	// two SourceDetail objects, one for ConfigurationItemChangeNotification and
	// one for OversizedConfigurationItemChangeNotification.
	MessageType *string `type:"string" enum:"MessageType"`
	// contains filtered or unexported fields
}

Provides the source and the message types that trigger Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic. You can specify the parameter values for SourceDetail only for custom rules.

func (SourceDetail) GoString added in v0.9.13

func (s SourceDetail) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SourceDetail) SetEventSource added in v1.5.0

func (s *SourceDetail) SetEventSource(v string) *SourceDetail

SetEventSource sets the EventSource field's value.

func (*SourceDetail) SetMaximumExecutionFrequency added in v1.5.0

func (s *SourceDetail) SetMaximumExecutionFrequency(v string) *SourceDetail

SetMaximumExecutionFrequency sets the MaximumExecutionFrequency field's value.

func (*SourceDetail) SetMessageType added in v1.5.0

func (s *SourceDetail) SetMessageType(v string) *SourceDetail

SetMessageType sets the MessageType field's value.

func (SourceDetail) String added in v0.9.13

func (s SourceDetail) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SsmControls added in v1.23.16

type SsmControls struct {

	// The maximum percentage of remediation actions allowed to run in parallel
	// on the non-compliant resources for that specific rule. You can specify a
	// percentage, such as 10%. The default value is 10.
	ConcurrentExecutionRatePercentage *int64 `min:"1" type:"integer"`

	// The percentage of errors that are allowed before SSM stops running automations
	// on non-compliant resources for that specific rule. You can specify a percentage
	// of errors, for example 10%. If you do not specifiy a percentage, the default
	// is 50%. For example, if you set the ErrorPercentage to 40% for 10 non-compliant
	// resources, then SSM stops running the automations when the fifth error is
	// received.
	ErrorPercentage *int64 `min:"1" type:"integer"`
	// contains filtered or unexported fields
}

Amazon Web Services Systems Manager (SSM) specific remediation controls.

func (SsmControls) GoString added in v1.23.16

func (s SsmControls) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SsmControls) SetConcurrentExecutionRatePercentage added in v1.23.16

func (s *SsmControls) SetConcurrentExecutionRatePercentage(v int64) *SsmControls

SetConcurrentExecutionRatePercentage sets the ConcurrentExecutionRatePercentage field's value.

func (*SsmControls) SetErrorPercentage added in v1.23.16

func (s *SsmControls) SetErrorPercentage(v int64) *SsmControls

SetErrorPercentage sets the ErrorPercentage field's value.

func (SsmControls) String added in v1.23.16

func (s SsmControls) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SsmControls) Validate added in v1.23.16

func (s *SsmControls) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartConfigRulesEvaluationInput added in v1.2.7

type StartConfigRulesEvaluationInput struct {

	// The list of names of Config rules that you want to run evaluations for.
	ConfigRuleNames []*string `min:"1" type:"list"`
	// contains filtered or unexported fields
}

func (StartConfigRulesEvaluationInput) GoString added in v1.2.7

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartConfigRulesEvaluationInput) SetConfigRuleNames added in v1.5.0

SetConfigRuleNames sets the ConfigRuleNames field's value.

func (StartConfigRulesEvaluationInput) String added in v1.2.7

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartConfigRulesEvaluationInput) Validate added in v1.2.7

func (s *StartConfigRulesEvaluationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartConfigRulesEvaluationOutput added in v1.2.7

type StartConfigRulesEvaluationOutput struct {
	// contains filtered or unexported fields
}

The output when you start the evaluation for the specified Config rule.

func (StartConfigRulesEvaluationOutput) GoString added in v1.2.7

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (StartConfigRulesEvaluationOutput) String added in v1.2.7

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartConfigurationRecorderInput

type StartConfigurationRecorderInput struct {

	// The name of the recorder object that records each configuration change made
	// to the resources.
	//
	// ConfigurationRecorderName is a required field
	ConfigurationRecorderName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the StartConfigurationRecorder action.

func (StartConfigurationRecorderInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartConfigurationRecorderInput) SetConfigurationRecorderName added in v1.5.0

func (s *StartConfigurationRecorderInput) SetConfigurationRecorderName(v string) *StartConfigurationRecorderInput

SetConfigurationRecorderName sets the ConfigurationRecorderName field's value.

func (StartConfigurationRecorderInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartConfigurationRecorderInput) Validate added in v1.1.21

func (s *StartConfigurationRecorderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartConfigurationRecorderOutput

type StartConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (StartConfigurationRecorderOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (StartConfigurationRecorderOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartRemediationExecutionInput added in v1.18.2

type StartRemediationExecutionInput struct {

	// The list of names of Config rules that you want to run remediation execution
	// for.
	//
	// ConfigRuleName is a required field
	ConfigRuleName *string `min:"1" type:"string" required:"true"`

	// A list of resource keys to be processed with the current request. Each element
	// in the list consists of the resource type and resource ID.
	//
	// ResourceKeys is a required field
	ResourceKeys []*ResourceKey `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (StartRemediationExecutionInput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartRemediationExecutionInput) SetConfigRuleName added in v1.18.2

SetConfigRuleName sets the ConfigRuleName field's value.

func (*StartRemediationExecutionInput) SetResourceKeys added in v1.18.2

SetResourceKeys sets the ResourceKeys field's value.

func (StartRemediationExecutionInput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartRemediationExecutionInput) Validate added in v1.18.2

func (s *StartRemediationExecutionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartRemediationExecutionOutput added in v1.18.2

type StartRemediationExecutionOutput struct {

	// For resources that have failed to start execution, the API returns a resource
	// key object.
	FailedItems []*ResourceKey `min:"1" type:"list"`

	// Returns a failure message. For example, the resource is already compliant.
	FailureMessage *string `type:"string"`
	// contains filtered or unexported fields
}

func (StartRemediationExecutionOutput) GoString added in v1.18.2

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartRemediationExecutionOutput) SetFailedItems added in v1.18.2

SetFailedItems sets the FailedItems field's value.

func (*StartRemediationExecutionOutput) SetFailureMessage added in v1.18.2

SetFailureMessage sets the FailureMessage field's value.

func (StartRemediationExecutionOutput) String added in v1.18.2

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartResourceEvaluationInput added in v1.44.147

type StartResourceEvaluationInput struct {

	// A client token is a unique, case-sensitive string of up to 64 ASCII characters.
	// To make an idempotent API request using one of these actions, specify a client
	// token in the request.
	//
	// Avoid reusing the same client token for other API requests. If you retry
	// a request that completed successfully using the same client token and the
	// same parameters, the retry succeeds without performing any further actions.
	// If you retry a successful request using the same client token, but one or
	// more of the parameters are different, other than the Region or Availability
	// Zone, the retry fails with an IdempotentParameterMismatch error.
	ClientToken *string `min:"64" type:"string"`

	// Returns an EvaluationContext object.
	EvaluationContext *EvaluationContext `type:"structure"`

	// The mode of an evaluation. The valid values for this API are DETECTIVE and
	// PROACTIVE.
	//
	// EvaluationMode is a required field
	EvaluationMode *string `type:"string" required:"true" enum:"EvaluationMode"`

	// The timeout for an evaluation. The default is 900 seconds. You cannot specify
	// a number greater than 3600. If you specify 0, Config uses the default.
	EvaluationTimeout *int64 `type:"integer"`

	// Returns a ResourceDetails object.
	//
	// ResourceDetails is a required field
	ResourceDetails *ResourceDetails `type:"structure" required:"true"`
	// contains filtered or unexported fields
}

func (StartResourceEvaluationInput) GoString added in v1.44.147

func (s StartResourceEvaluationInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartResourceEvaluationInput) SetClientToken added in v1.44.147

SetClientToken sets the ClientToken field's value.

func (*StartResourceEvaluationInput) SetEvaluationContext added in v1.44.147

SetEvaluationContext sets the EvaluationContext field's value.

func (*StartResourceEvaluationInput) SetEvaluationMode added in v1.44.147

SetEvaluationMode sets the EvaluationMode field's value.

func (*StartResourceEvaluationInput) SetEvaluationTimeout added in v1.44.147

SetEvaluationTimeout sets the EvaluationTimeout field's value.

func (*StartResourceEvaluationInput) SetResourceDetails added in v1.44.147

SetResourceDetails sets the ResourceDetails field's value.

func (StartResourceEvaluationInput) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartResourceEvaluationInput) Validate added in v1.44.147

func (s *StartResourceEvaluationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartResourceEvaluationOutput added in v1.44.147

type StartResourceEvaluationOutput struct {

	// A unique ResourceEvaluationId that is associated with a single execution.
	ResourceEvaluationId *string `min:"1" type:"string"`
	// contains filtered or unexported fields
}

func (StartResourceEvaluationOutput) GoString added in v1.44.147

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartResourceEvaluationOutput) SetResourceEvaluationId added in v1.44.147

SetResourceEvaluationId sets the ResourceEvaluationId field's value.

func (StartResourceEvaluationOutput) String added in v1.44.147

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StaticValue added in v1.18.2

type StaticValue struct {

	// A list of values. For example, the ARN of the assumed role.
	//
	// Values is a required field
	Values []*string `type:"list" required:"true"`
	// contains filtered or unexported fields
}

The static value of the resource.

func (StaticValue) GoString added in v1.18.2

func (s StaticValue) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StaticValue) SetValues added in v1.18.2

func (s *StaticValue) SetValues(v []*string) *StaticValue

SetValues sets the Values field's value.

func (StaticValue) String added in v1.18.2

func (s StaticValue) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StaticValue) Validate added in v1.23.16

func (s *StaticValue) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StatusDetailFilters added in v1.20.17

type StatusDetailFilters struct {

	// The 12-digit account ID of the member account within an organization.
	AccountId *string `type:"string"`

	// Indicates deployment status for Config rule in the member account. When management
	// account calls PutOrganizationConfigRule action for the first time, Config
	// rule status is created in the member account. When management account calls
	// PutOrganizationConfigRule action for the second time, Config rule status
	// is updated in the member account. Config rule status is deleted when the
	// management account deletes OrganizationConfigRule and disables service access
	// for config-multiaccountsetup.amazonaws.com.
	//
	// Config sets the state of the rule to:
	//
	//    * CREATE_SUCCESSFUL when Config rule has been created in the member account.
	//
	//    * CREATE_IN_PROGRESS when Config rule is being created in the member account.
	//
	//    * CREATE_FAILED when Config rule creation has failed in the member account.
	//
	//    * DELETE_FAILED when Config rule deletion has failed in the member account.
	//
	//    * DELETE_IN_PROGRESS when Config rule is being deleted in the member account.
	//
	//    * DELETE_SUCCESSFUL when Config rule has been deleted in the member account.
	//
	//    * UPDATE_SUCCESSFUL when Config rule has been updated in the member account.
	//
	//    * UPDATE_IN_PROGRESS when Config rule is being updated in the member account.
	//
	//    * UPDATE_FAILED when Config rule deletion has failed in the member account.
	MemberAccountRuleStatus *string `type:"string" enum:"MemberAccountRuleStatus"`
	// contains filtered or unexported fields
}

Status filter object to filter results based on specific member account ID or status type for an organization Config rule.

func (StatusDetailFilters) GoString added in v1.20.17

func (s StatusDetailFilters) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StatusDetailFilters) SetAccountId added in v1.20.17

func (s *StatusDetailFilters) SetAccountId(v string) *StatusDetailFilters

SetAccountId sets the AccountId field's value.

func (*StatusDetailFilters) SetMemberAccountRuleStatus added in v1.20.17

func (s *StatusDetailFilters) SetMemberAccountRuleStatus(v string) *StatusDetailFilters

SetMemberAccountRuleStatus sets the MemberAccountRuleStatus field's value.

func (StatusDetailFilters) String added in v1.20.17

func (s StatusDetailFilters) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopConfigurationRecorderInput

type StopConfigurationRecorderInput struct {

	// The name of the recorder object that records each configuration change made
	// to the resources.
	//
	// ConfigurationRecorderName is a required field
	ConfigurationRecorderName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

The input for the StopConfigurationRecorder action.

func (StopConfigurationRecorderInput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopConfigurationRecorderInput) SetConfigurationRecorderName added in v1.5.0

func (s *StopConfigurationRecorderInput) SetConfigurationRecorderName(v string) *StopConfigurationRecorderInput

SetConfigurationRecorderName sets the ConfigurationRecorderName field's value.

func (StopConfigurationRecorderInput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopConfigurationRecorderInput) Validate added in v1.1.21

func (s *StopConfigurationRecorderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopConfigurationRecorderOutput

type StopConfigurationRecorderOutput struct {
	// contains filtered or unexported fields
}

func (StopConfigurationRecorderOutput) GoString added in v0.6.5

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (StopConfigurationRecorderOutput) String added in v0.6.5

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StoredQuery added in v1.36.13

type StoredQuery struct {

	// A unique description for the query.
	Description *string `type:"string"`

	// The expression of the query. For example, SELECT resourceId, resourceType,
	// supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType
	// = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status
	// = 'Off'.
	Expression *string `min:"1" type:"string"`

	// Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
	QueryArn *string `min:"1" type:"string"`

	// The ID of the query.
	QueryId *string `min:"1" type:"string"`

	// The name of the query.
	//
	// QueryName is a required field
	QueryName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Provides the details of a stored query.

func (StoredQuery) GoString added in v1.36.13

func (s StoredQuery) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StoredQuery) SetDescription added in v1.36.13

func (s *StoredQuery) SetDescription(v string) *StoredQuery

SetDescription sets the Description field's value.

func (*StoredQuery) SetExpression added in v1.36.13

func (s *StoredQuery) SetExpression(v string) *StoredQuery

SetExpression sets the Expression field's value.

func (*StoredQuery) SetQueryArn added in v1.36.13

func (s *StoredQuery) SetQueryArn(v string) *StoredQuery

SetQueryArn sets the QueryArn field's value.

func (*StoredQuery) SetQueryId added in v1.36.13

func (s *StoredQuery) SetQueryId(v string) *StoredQuery

SetQueryId sets the QueryId field's value.

func (*StoredQuery) SetQueryName added in v1.36.13

func (s *StoredQuery) SetQueryName(v string) *StoredQuery

SetQueryName sets the QueryName field's value.

func (StoredQuery) String added in v1.36.13

func (s StoredQuery) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StoredQuery) Validate added in v1.36.13

func (s *StoredQuery) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StoredQueryMetadata added in v1.36.13

type StoredQueryMetadata struct {

	// A unique description for the query.
	Description *string `type:"string"`

	// Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
	//
	// QueryArn is a required field
	QueryArn *string `min:"1" type:"string" required:"true"`

	// The ID of the query.
	//
	// QueryId is a required field
	QueryId *string `min:"1" type:"string" required:"true"`

	// The name of the query.
	//
	// QueryName is a required field
	QueryName *string `min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Returns details of a specific query.

func (StoredQueryMetadata) GoString added in v1.36.13

func (s StoredQueryMetadata) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StoredQueryMetadata) SetDescription added in v1.36.13

func (s *StoredQueryMetadata) SetDescription(v string) *StoredQueryMetadata

SetDescription sets the Description field's value.

func (*StoredQueryMetadata) SetQueryArn added in v1.36.13

func (s *StoredQueryMetadata) SetQueryArn(v string) *StoredQueryMetadata

SetQueryArn sets the QueryArn field's value.

func (*StoredQueryMetadata) SetQueryId added in v1.36.13

SetQueryId sets the QueryId field's value.

func (*StoredQueryMetadata) SetQueryName added in v1.36.13

func (s *StoredQueryMetadata) SetQueryName(v string) *StoredQueryMetadata

SetQueryName sets the QueryName field's value.

func (StoredQueryMetadata) String added in v1.36.13

func (s StoredQueryMetadata) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Tag added in v1.18.3

type Tag struct {

	// One part of a key-value pair that make up a tag. A key is a general label
	// that acts like a category for more specific tag values.
	Key *string `min:"1" type:"string"`

	// The optional part of a key-value pair that make up a tag. A value acts as
	// a descriptor within a tag category (key).
	Value *string `type:"string"`
	// contains filtered or unexported fields
}

The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

func (Tag) GoString added in v1.18.3

func (s Tag) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Tag) SetKey added in v1.18.3

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue added in v1.18.3

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String added in v1.18.3

func (s Tag) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Tag) Validate added in v1.18.3

func (s *Tag) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceInput added in v1.18.3

type TagResourceInput struct {

	// The Amazon Resource Name (ARN) that identifies the resource for which to
	// list the tags. Currently, the supported resources are ConfigRule, ConfigurationAggregator
	// and AggregatorAuthorization.
	//
	// ResourceArn is a required field
	ResourceArn *string `min:"1" type:"string" required:"true"`

	// An array of tag object.
	//
	// Tags is a required field
	Tags []*Tag `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (TagResourceInput) GoString added in v1.18.3

func (s TagResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagResourceInput) SetResourceArn added in v1.18.3

func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*TagResourceInput) SetTags added in v1.18.3

func (s *TagResourceInput) SetTags(v []*Tag) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String added in v1.18.3

func (s TagResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagResourceInput) Validate added in v1.18.3

func (s *TagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceOutput added in v1.18.3

type TagResourceOutput struct {
	// contains filtered or unexported fields
}

func (TagResourceOutput) GoString added in v1.18.3

func (s TagResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (TagResourceOutput) String added in v1.18.3

func (s TagResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TemplateSSMDocumentDetails added in v1.44.84

type TemplateSSMDocumentDetails struct {

	// The name or Amazon Resource Name (ARN) of the SSM document to use to create
	// a conformance pack. If you use the document name, Config checks only your
	// account and Amazon Web Services Region for the SSM document.
	//
	// DocumentName is a required field
	DocumentName *string `type:"string" required:"true"`

	// The version of the SSM document to use to create a conformance pack. By default,
	// Config uses the latest version.
	//
	// This field is optional.
	DocumentVersion *string `type:"string"`
	// contains filtered or unexported fields
}

This API allows you to create a conformance pack template with an Amazon Web Services Systems Manager document (SSM document). To deploy a conformance pack using an SSM document, first create an SSM document with conformance pack content, and then provide the DocumentName in the PutConformancePack API (https://docs.aws.amazon.com/config/latest/APIReference/API_PutConformancePack.html). You can also provide the DocumentVersion.

The TemplateSSMDocumentDetails object contains the name of the SSM document and the version of the SSM document.

func (TemplateSSMDocumentDetails) GoString added in v1.44.84

func (s TemplateSSMDocumentDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TemplateSSMDocumentDetails) SetDocumentName added in v1.44.84

SetDocumentName sets the DocumentName field's value.

func (*TemplateSSMDocumentDetails) SetDocumentVersion added in v1.44.84

SetDocumentVersion sets the DocumentVersion field's value.

func (TemplateSSMDocumentDetails) String added in v1.44.84

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TemplateSSMDocumentDetails) Validate added in v1.44.84

func (s *TemplateSSMDocumentDetails) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TimeWindow added in v1.44.147

type TimeWindow struct {

	// The end time of an execution. The end time must be after the start date.
	EndTime *time.Time `type:"timestamp"`

	// The start time of an execution.
	StartTime *time.Time `type:"timestamp"`
	// contains filtered or unexported fields
}

Filters evaluation results based on start and end times.

func (TimeWindow) GoString added in v1.44.147

func (s TimeWindow) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TimeWindow) SetEndTime added in v1.44.147

func (s *TimeWindow) SetEndTime(v time.Time) *TimeWindow

SetEndTime sets the EndTime field's value.

func (*TimeWindow) SetStartTime added in v1.44.147

func (s *TimeWindow) SetStartTime(v time.Time) *TimeWindow

SetStartTime sets the StartTime field's value.

func (TimeWindow) String added in v1.44.147

func (s TimeWindow) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TooManyTagsException added in v1.28.0

type TooManyTagsException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

You have reached the limit of the number of tags you can use. For more information, see Service Limits (https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the Config Developer Guide.

func (*TooManyTagsException) Code added in v1.28.0

func (s *TooManyTagsException) Code() string

Code returns the exception type name.

func (*TooManyTagsException) Error added in v1.28.0

func (s *TooManyTagsException) Error() string

func (TooManyTagsException) GoString added in v1.28.0

func (s TooManyTagsException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TooManyTagsException) Message added in v1.28.0

func (s *TooManyTagsException) Message() string

Message returns the exception's message.

func (*TooManyTagsException) OrigErr added in v1.28.0

func (s *TooManyTagsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TooManyTagsException) RequestID added in v1.28.0

func (s *TooManyTagsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TooManyTagsException) StatusCode added in v1.28.0

func (s *TooManyTagsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (TooManyTagsException) String added in v1.28.0

func (s TooManyTagsException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UntagResourceInput added in v1.18.3

type UntagResourceInput struct {

	// The Amazon Resource Name (ARN) that identifies the resource for which to
	// list the tags. Currently, the supported resources are ConfigRule, ConfigurationAggregator
	// and AggregatorAuthorization.
	//
	// ResourceArn is a required field
	ResourceArn *string `min:"1" type:"string" required:"true"`

	// The keys of the tags to be removed.
	//
	// TagKeys is a required field
	TagKeys []*string `min:"1" type:"list" required:"true"`
	// contains filtered or unexported fields
}

func (UntagResourceInput) GoString added in v1.18.3

func (s UntagResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UntagResourceInput) SetResourceArn added in v1.18.3

func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*UntagResourceInput) SetTagKeys added in v1.18.3

func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String added in v1.18.3

func (s UntagResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UntagResourceInput) Validate added in v1.18.3

func (s *UntagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagResourceOutput added in v1.18.3

type UntagResourceOutput struct {
	// contains filtered or unexported fields
}

func (UntagResourceOutput) GoString added in v1.18.3

func (s UntagResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (UntagResourceOutput) String added in v1.18.3

func (s UntagResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ValidationException added in v1.28.0

type ValidationException struct {
	RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

	Message_ *string `locationName:"message" type:"string"`
	// contains filtered or unexported fields
}

The requested action is not valid.

For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.

For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.

func (*ValidationException) Code added in v1.28.0

func (s *ValidationException) Code() string

Code returns the exception type name.

func (*ValidationException) Error added in v1.28.0

func (s *ValidationException) Error() string

func (ValidationException) GoString added in v1.28.0

func (s ValidationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ValidationException) Message added in v1.28.0

func (s *ValidationException) Message() string

Message returns the exception's message.

func (*ValidationException) OrigErr added in v1.28.0

func (s *ValidationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ValidationException) RequestID added in v1.28.0

func (s *ValidationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ValidationException) StatusCode added in v1.28.0

func (s *ValidationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ValidationException) String added in v1.28.0

func (s ValidationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

Directories

Path Synopsis
Package configserviceiface provides an interface to enable mocking the AWS Config service client for testing your code.
Package configserviceiface provides an interface to enable mocking the AWS Config service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL