diff --git a/clients/client-config-service/src/ConfigService.ts b/clients/client-config-service/src/ConfigService.ts index 55e1b5633b88..ba7de76b0adf 100644 --- a/clients/client-config-service/src/ConfigService.ts +++ b/clients/client-config-service/src/ConfigService.ts @@ -3030,11 +3030,10 @@ export class ConfigService extends ConfigServiceClient { * ConfigRuleId, or ConfigRuleArn in the * ConfigRule data type that you use in this * request.

- *

The maximum number of rules that Config supports is 150.

- * - *

For information about requesting a rule limit increase, see - * Config Limits in the Amazon Web Services General - * Reference Guide.

+ *

For information on how many Config rules you can have per account, + * see + * Service Limits + * in the Config Developer Guide.

* *

For more information about developing and using Config * rules, see Evaluating Amazon Web Services resource Configurations with Config @@ -3162,7 +3161,11 @@ export class ConfigService extends ConfigServiceClient { } /** - *

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 Amazon Web Services Organization.

+ *

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 Amazon Web Services Organization. + * For information on how many conformance packs you can have per account, + * see + * Service Limits + * 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.

* @@ -3316,10 +3319,13 @@ export class ConfigService extends ConfigServiceClient { /** *

Adds or updates organization Config rule for your entire organization evaluating whether your Amazon Web Services resources comply with your - * desired configurations.

+ * desired configurations. For information on how many organization Config rules you can have per account, + * see + * Service Limits + * in the Config Developer Guide.

*

Only a master 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.

+ * 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 master or delegated administrator account of your organization. * The service linked role is created only when the role does not exist in the caller account. @@ -3332,7 +3338,6 @@ export class ConfigService extends ConfigServiceClient { * When you use the PutOrganizationConfigRule action to add the rule to Config, you must * specify the Amazon Resource Name (ARN) that Lambda assigns to the function. * If you are adding an Config managed rule, specify the rule's identifier for the RuleIdentifier key.

- *

The maximum number of organization Config rules that Config supports is 150 and 3 delegated administrator per organization.

* *

Prerequisite: Ensure you call EnableAllFeatures API to enable all features in an organization.

*

Specify either OrganizationCustomRuleMetadata or OrganizationManagedRuleMetadata.

diff --git a/clients/client-config-service/src/commands/PutConfigRuleCommand.ts b/clients/client-config-service/src/commands/PutConfigRuleCommand.ts index 6559f3a237ab..b67c71171b85 100644 --- a/clients/client-config-service/src/commands/PutConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigRuleCommand.ts @@ -49,11 +49,10 @@ export interface PutConfigRuleCommandOutput extends __MetadataBearer {} * ConfigRuleId, or ConfigRuleArn in the * ConfigRule data type that you use in this * request.

- *

The maximum number of rules that Config supports is 150.

- * - *

For information about requesting a rule limit increase, see - * Config Limits in the Amazon Web Services General - * Reference Guide.

+ *

For information on how many Config rules you can have per account, + * see + * Service Limits + * in the Config Developer Guide.

* *

For more information about developing and using Config * rules, see Evaluating Amazon Web Services resource Configurations with Config diff --git a/clients/client-config-service/src/commands/PutConformancePackCommand.ts b/clients/client-config-service/src/commands/PutConformancePackCommand.ts index 67e9363ed58b..b4cd8863cacd 100644 --- a/clients/client-config-service/src/commands/PutConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/PutConformancePackCommand.ts @@ -23,7 +23,11 @@ export interface PutConformancePackCommandInput extends PutConformancePackReques export interface PutConformancePackCommandOutput extends PutConformancePackResponse, __MetadataBearer {} /** - *

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 Amazon Web Services Organization.

+ *

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 Amazon Web Services Organization. + * For information on how many conformance packs you can have per account, + * see + * Service Limits + * 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.

* diff --git a/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts b/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts index ac5612fac696..45173cb9f484 100644 --- a/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts @@ -24,10 +24,13 @@ export interface PutOrganizationConfigRuleCommandOutput extends PutOrganizationC /** *

Adds or updates organization Config rule for your entire organization evaluating whether your Amazon Web Services resources comply with your - * desired configurations.

+ * desired configurations. For information on how many organization Config rules you can have per account, + * see + * Service Limits + * in the Config Developer Guide.

*

Only a master 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.

+ * 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 master or delegated administrator account of your organization. * The service linked role is created only when the role does not exist in the caller account. @@ -40,7 +43,6 @@ export interface PutOrganizationConfigRuleCommandOutput extends PutOrganizationC * When you use the PutOrganizationConfigRule action to add the rule to Config, you must * specify the Amazon Resource Name (ARN) that Lambda assigns to the function. * If you are adding an Config managed rule, specify the rule's identifier for the RuleIdentifier key.

- *

The maximum number of organization Config rules that Config supports is 150 and 3 delegated administrator per organization.

* *

Prerequisite: Ensure you call EnableAllFeatures API to enable all features in an organization.

*

Specify either OrganizationCustomRuleMetadata or OrganizationManagedRuleMetadata.

diff --git a/clients/client-config-service/src/models/models_0.ts b/clients/client-config-service/src/models/models_0.ts index a92cc3e53efd..eb49702bdd3d 100644 --- a/clients/client-config-service/src/models/models_0.ts +++ b/clients/client-config-service/src/models/models_0.ts @@ -601,6 +601,7 @@ export namespace AggregateEvaluationResult { } export enum ResourceType { + AccessAnalyzerAnalyzer = "AWS::AccessAnalyzer::Analyzer", AccountPublicAccessBlock = "AWS::S3::AccountPublicAccessBlock", Alarm = "AWS::CloudWatch::Alarm", Api = "AWS::ApiGatewayV2::Api", @@ -612,6 +613,8 @@ export enum ResourceType { BackupRecoveryPoint = "AWS::Backup::RecoveryPoint", BackupSelection = "AWS::Backup::BackupSelection", BackupVault = "AWS::Backup::BackupVault", + BatchComputeEnvironment = "AWS::Batch::ComputeEnvironment", + BatchJobQueue = "AWS::Batch::JobQueue", Bucket = "AWS::S3::Bucket", Certificate = "AWS::ACM::Certificate", CloudFormationProduct = "AWS::ServiceCatalog::CloudFormationProduct", @@ -632,6 +635,8 @@ export enum ResourceType { DBSecurityGroup = "AWS::RDS::DBSecurityGroup", DBSnapshot = "AWS::RDS::DBSnapshot", DBSubnetGroup = "AWS::RDS::DBSubnetGroup", + DMSEventSubscription = "AWS::DMS::EventSubscription", + DMSReplicationSubnetGroup = "AWS::DMS::ReplicationSubnetGroup", Distribution = "AWS::CloudFront::Distribution", Domain = "AWS::Elasticsearch::Domain", ECRPublicRepository = "AWS::ECR::PublicRepository", @@ -662,8 +667,10 @@ export enum ResourceType { KinesisStreamConsumer = "AWS::Kinesis::StreamConsumer", LaunchConfiguration = "AWS::AutoScaling::LaunchConfiguration", LaunchTemplate = "AWS::EC2::LaunchTemplate", + ListenerV2 = "AWS::ElasticLoadBalancingV2::Listener", LoadBalancer = "AWS::ElasticLoadBalancing::LoadBalancer", LoadBalancerV2 = "AWS::ElasticLoadBalancingV2::LoadBalancer", + MSKCluster = "AWS::MSK::Cluster", ManagedInstanceInventory = "AWS::SSM::ManagedInstanceInventory", ManagedRuleSetV2 = "AWS::WAFv2::ManagedRuleSet", NatGateway = "AWS::EC2::NatGateway", @@ -693,11 +700,15 @@ export enum ResourceType { ResourceCompliance = "AWS::Config::ResourceCompliance", RestApi = "AWS::ApiGateway::RestApi", Role = "AWS::IAM::Role", + Route53ResolverResolverEndpoint = "AWS::Route53Resolver::ResolverEndpoint", + Route53ResolverResolverRule = "AWS::Route53Resolver::ResolverRule", + Route53ResolverResolverRuleAssociation = "AWS::Route53Resolver::ResolverRuleAssociation", RouteTable = "AWS::EC2::RouteTable", Rule = "AWS::WAF::Rule", RuleGroup = "AWS::WAF::RuleGroup", RuleGroupV2 = "AWS::WAFv2::RuleGroup", SageMakerCodeRepository = "AWS::SageMaker::CodeRepository", + SageMakerModel = "AWS::SageMaker::Model", ScalingPolicy = "AWS::AutoScaling::ScalingPolicy", ScheduledAction = "AWS::AutoScaling::ScheduledAction", Secret = "AWS::SecretsManager::Secret", @@ -705,6 +716,8 @@ export enum ResourceType { Stack = "AWS::CloudFormation::Stack", Stage = "AWS::ApiGateway::Stage", StageV2 = "AWS::ApiGatewayV2::Stage", + StepFunctionsActivity = "AWS::StepFunctions::Activity", + StepFunctionsStateMachine = "AWS::StepFunctions::StateMachine", StreamingDistribution = "AWS::CloudFront::StreamingDistribution", Subnet = "AWS::EC2::Subnet", Table = "AWS::DynamoDB::Table", @@ -721,6 +734,8 @@ export enum ResourceType { Volume = "AWS::EC2::Volume", WebACL = "AWS::WAF::WebACL", WebACLV2 = "AWS::WAFv2::WebACL", + WorkSpacesConnectionAlias = "AWS::WorkSpaces::ConnectionAlias", + WorkSpacesWorkspace = "AWS::WorkSpaces::Workspace", } /** diff --git a/codegen/sdk-codegen/aws-models/config-service.json b/codegen/sdk-codegen/aws-models/config-service.json index cbafa4c4d50c..5700aa653ff9 100644 --- a/codegen/sdk-codegen/aws-models/config-service.json +++ b/codegen/sdk-codegen/aws-models/config-service.json @@ -8622,7 +8622,7 @@ } ], "traits": { - "smithy.api#documentation": "

Adds or updates an Config rule for evaluating whether your\n\t\t\tAmazon Web Services resources comply with your desired configurations.

\n\t\t

You can use this action for Config custom rules and Config\n\t\t\tmanaged rules. A Config custom rule is a rule that you\n\t\t\tdevelop and maintain. An Config managed rule is a customizable,\n\t\t\tpredefined rule that Config provides.

\n\t\t

If you are adding a new Config custom rule, you must first\n\t\t\tcreate the Lambda function that the rule invokes to evaluate\n\t\t\tyour resources. When you use the PutConfigRule action\n\t\t\tto add the rule to Config, you must specify the Amazon Resource\n\t\t\tName (ARN) that Lambda assigns to the function. Specify the ARN\n\t\t\tfor the SourceIdentifier key. This key is part of the\n\t\t\t\tSource object, which is part of the\n\t\t\t\tConfigRule object.

\n\t\t

If you are adding an Config managed rule, specify the\n\t\t\trule's identifier for the SourceIdentifier key. To\n\t\t\treference Config managed rule identifiers, see About Config managed rules.

\n\t\t

For any new rule that you add, specify the\n\t\t\t\tConfigRuleName in the ConfigRule\n\t\t\tobject. Do not specify the ConfigRuleArn or the\n\t\t\tConfigRuleId. These values are generated by Config for new rules.

\n\t\t

If you are updating a rule that you added previously, you can\n\t\t\tspecify the rule by ConfigRuleName,\n\t\t\t\tConfigRuleId, or ConfigRuleArn in the\n\t\t\t\tConfigRule data type that you use in this\n\t\t\trequest.

\n\t\t

The maximum number of rules that Config supports is 150.

\n\n\t\t

For information about requesting a rule limit increase, see\n\t\t\t\tConfig Limits in the Amazon Web Services General\n\t\t\t\tReference Guide.

\n\n\t\t

For more information about developing and using Config\n\t\t\trules, see Evaluating Amazon Web Services resource Configurations with Config\n\t\t\tin the Config Developer Guide.

" + "smithy.api#documentation": "

Adds or updates an Config rule for evaluating whether your\n\t\t\tAmazon Web Services resources comply with your desired configurations.

\n\t\t

You can use this action for Config custom rules and Config\n\t\t\tmanaged rules. A Config custom rule is a rule that you\n\t\t\tdevelop and maintain. An Config managed rule is a customizable,\n\t\t\tpredefined rule that Config provides.

\n\t\t

If you are adding a new Config custom rule, you must first\n\t\t\tcreate the Lambda function that the rule invokes to evaluate\n\t\t\tyour resources. When you use the PutConfigRule action\n\t\t\tto add the rule to Config, you must specify the Amazon Resource\n\t\t\tName (ARN) that Lambda assigns to the function. Specify the ARN\n\t\t\tfor the SourceIdentifier key. This key is part of the\n\t\t\t\tSource object, which is part of the\n\t\t\t\tConfigRule object.

\n\t\t

If you are adding an Config managed rule, specify the\n\t\t\trule's identifier for the SourceIdentifier key. To\n\t\t\treference Config managed rule identifiers, see About Config managed rules.

\n\t\t

For any new rule that you add, specify the\n\t\t\t\tConfigRuleName in the ConfigRule\n\t\t\tobject. Do not specify the ConfigRuleArn or the\n\t\t\tConfigRuleId. These values are generated by Config for new rules.

\n\t\t

If you are updating a rule that you added previously, you can\n\t\t\tspecify the rule by ConfigRuleName,\n\t\t\t\tConfigRuleId, or ConfigRuleArn in the\n\t\t\t\tConfigRule data type that you use in this\n\t\t\trequest.

\n\t\t

For information on how many Config rules you can have per account, \n\t\t\tsee \n Service Limits\n in the Config Developer Guide.

\n\n\t\t

For more information about developing and using Config\n\t\t\trules, see Evaluating Amazon Web Services resource Configurations with Config\n\t\t\tin the Config Developer Guide.

" } }, "com.amazonaws.configservice#PutConfigRuleRequest": { @@ -8783,7 +8783,7 @@ } ], "traits": { - "smithy.api#documentation": "

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 Amazon Web Services Organization.

\n\t\t

This API creates a service linked role AWSServiceRoleForConfigConforms in your account. \n\t\tThe service linked role is created only when the role does not exist in your account.

\n\t\t \n

You must specify either the TemplateS3Uri or the TemplateBody parameter, but not both. \n\t\t\tIf you provide both Config uses the TemplateS3Uri parameter and ignores the TemplateBody parameter.

\n
" + "smithy.api#documentation": "

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 Amazon Web Services Organization.\n\t\t\tFor information on how many conformance packs you can have per account, \n\t\t\tsee \n Service Limits\n in the Config Developer Guide.

\n\t\t

This API creates a service linked role AWSServiceRoleForConfigConforms in your account. \n\t\tThe service linked role is created only when the role does not exist in your account.

\n\t\t \n

You must specify either the TemplateS3Uri or the TemplateBody parameter, but not both. \n\t\t\tIf you provide both Config uses the TemplateS3Uri parameter and ignores the TemplateBody parameter.

\n
" } }, "com.amazonaws.configservice#PutConformancePackRequest": { @@ -9034,7 +9034,7 @@ } ], "traits": { - "smithy.api#documentation": "

Adds or updates organization Config rule for your entire organization evaluating whether your Amazon Web Services resources comply with your \n\t\t\tdesired configurations.

\n\t

Only a master account and a delegated administrator can create or update an organization Config rule.\n\t\tWhen calling this API with a delegated administrator, you must ensure Organizations \n\t\tListDelegatedAdministrator permissions are added.

\n\t\t

This API enables organization service access through the EnableAWSServiceAccess action and creates a service linked \n\t\t\trole AWSServiceRoleForConfigMultiAccountSetup in the master or delegated administrator account of your organization. \n\t\t\tThe service linked role is created only when the role does not exist in the caller account. \n\t\t\tConfig verifies the existence of role with GetRole action.

\n\t\t

To use this API with delegated administrator, register a delegated administrator by calling Amazon Web Services Organization\n\t\t\tregister-delegated-administrator for config-multiaccountsetup.amazonaws.com.

\n\t\t

You can use this action to create both Config custom rules and Config managed rules. \n\t\t\tIf you are adding a new Config custom rule, you must first create Lambda function in the master account or a delegated \n\t\t\tadministrator 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.\n\t\t\tWhen you use the PutOrganizationConfigRule action to add the rule to Config, you must \n\t\t\tspecify the Amazon Resource Name (ARN) that Lambda assigns to the function. \n\t\t\tIf you are adding an Config managed rule, specify the rule's identifier for the RuleIdentifier key.

\n\t\t

The maximum number of organization Config rules that Config supports is 150 and 3 delegated administrator per organization.

\n\t\t \n

Prerequisite: Ensure you call EnableAllFeatures API to enable all features in an organization.

\n\t\t\t

Specify either OrganizationCustomRuleMetadata or OrganizationManagedRuleMetadata.

\n\t\t\t
" + "smithy.api#documentation": "

Adds or updates organization Config rule for your entire organization evaluating whether your Amazon Web Services resources comply with your \n\t\t\tdesired configurations. For information on how many organization Config rules you can have per account, \n\t\t\tsee \n Service Limits\n in the Config Developer Guide.

\n\t

Only a master account and a delegated administrator can create or update an organization Config rule.\n\t\tWhen calling this API with a delegated administrator, you must ensure Organizations \n\t\tListDelegatedAdministrator permissions are added. An organization can have up to 3 delegated administrators.

\n\t\t

This API enables organization service access through the EnableAWSServiceAccess action and creates a service linked \n\t\t\trole AWSServiceRoleForConfigMultiAccountSetup in the master or delegated administrator account of your organization. \n\t\t\tThe service linked role is created only when the role does not exist in the caller account. \n\t\t\tConfig verifies the existence of role with GetRole action.

\n\t\t

To use this API with delegated administrator, register a delegated administrator by calling Amazon Web Services Organization\n\t\t\tregister-delegated-administrator for config-multiaccountsetup.amazonaws.com.

\n\t\t

You can use this action to create both Config custom rules and Config managed rules. \n\t\t\tIf you are adding a new Config custom rule, you must first create Lambda function in the master account or a delegated \n\t\t\tadministrator 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.\n\t\t\tWhen you use the PutOrganizationConfigRule action to add the rule to Config, you must \n\t\t\tspecify the Amazon Resource Name (ARN) that Lambda assigns to the function. \n\t\t\tIf you are adding an Config managed rule, specify the rule's identifier for the RuleIdentifier key.

\n\t\t \n

Prerequisite: Ensure you call EnableAllFeatures API to enable all features in an organization.

\n\t\t\t

Specify either OrganizationCustomRuleMetadata or OrganizationManagedRuleMetadata.

\n\t\t\t
" } }, "com.amazonaws.configservice#PutOrganizationConfigRuleRequest": { @@ -10751,6 +10751,66 @@ { "value": "AWS::SageMaker::CodeRepository", "name": "SageMakerCodeRepository" + }, + { + "value": "AWS::Route53Resolver::ResolverEndpoint", + "name": "Route53ResolverResolverEndpoint" + }, + { + "value": "AWS::Route53Resolver::ResolverRule", + "name": "Route53ResolverResolverRule" + }, + { + "value": "AWS::Route53Resolver::ResolverRuleAssociation", + "name": "Route53ResolverResolverRuleAssociation" + }, + { + "value": "AWS::DMS::ReplicationSubnetGroup", + "name": "DMSReplicationSubnetGroup" + }, + { + "value": "AWS::DMS::EventSubscription", + "name": "DMSEventSubscription" + }, + { + "value": "AWS::MSK::Cluster", + "name": "MSKCluster" + }, + { + "value": "AWS::StepFunctions::Activity", + "name": "StepFunctionsActivity" + }, + { + "value": "AWS::WorkSpaces::Workspace", + "name": "WorkSpacesWorkspace" + }, + { + "value": "AWS::WorkSpaces::ConnectionAlias", + "name": "WorkSpacesConnectionAlias" + }, + { + "value": "AWS::SageMaker::Model", + "name": "SageMakerModel" + }, + { + "value": "AWS::ElasticLoadBalancingV2::Listener", + "name": "ListenerV2" + }, + { + "value": "AWS::StepFunctions::StateMachine", + "name": "StepFunctionsStateMachine" + }, + { + "value": "AWS::Batch::JobQueue", + "name": "BatchJobQueue" + }, + { + "value": "AWS::Batch::ComputeEnvironment", + "name": "BatchComputeEnvironment" + }, + { + "value": "AWS::AccessAnalyzer::Analyzer", + "name": "AccessAnalyzerAnalyzer" } ] }