@aws-sdk/client-config-service 3.956.0 → 3.958.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -103
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +1664 -1840
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/models/enums.js +91 -0
- package/dist-es/pagination/index.js +5 -5
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +1573 -1840
- package/dist-types/commands/AssociateResourceTypesCommand.d.ts +4 -4
- package/dist-types/commands/BatchGetAggregateResourceConfigCommand.d.ts +3 -3
- package/dist-types/commands/BatchGetResourceConfigCommand.d.ts +3 -3
- package/dist-types/commands/DescribeConfigurationRecordersCommand.d.ts +3 -3
- package/dist-types/commands/DescribeRemediationExecutionStatusCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateResourceTypesCommand.d.ts +4 -4
- package/dist-types/commands/GetAggregateDiscoveredResourceCountsCommand.d.ts +1 -1
- package/dist-types/commands/GetAggregateResourceConfigCommand.d.ts +3 -3
- package/dist-types/commands/GetDiscoveredResourceCountsCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceConfigHistoryCommand.d.ts +3 -3
- package/dist-types/commands/ListAggregateDiscoveredResourcesCommand.d.ts +2 -2
- package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +2 -2
- package/dist-types/commands/PutConfigurationRecorderCommand.d.ts +3 -3
- package/dist-types/commands/StartRemediationExecutionCommand.d.ts +2 -2
- package/dist-types/models/enums.d.ts +91 -0
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/models/enums.d.ts +91 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/package.json +15 -13
|
@@ -24,8 +24,7 @@ const getRuntimeConfig = (config) => {
|
|
|
24
24
|
defaultsMode,
|
|
25
25
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
|
|
26
26
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
27
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
28
|
-
(0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
27
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
29
28
|
maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
30
29
|
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
31
30
|
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
@@ -34,11 +34,9 @@ const getRuntimeConfig = (config) => {
|
|
|
34
34
|
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
35
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
36
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
38
|
-
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
37
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
39
38
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
40
|
-
region: config?.region ??
|
|
41
|
-
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
39
|
+
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
42
40
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
43
41
|
retryMode: config?.retryMode ??
|
|
44
42
|
(0, node_config_provider_1.loadConfig)({
|
|
@@ -3,10 +3,9 @@ import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
|
3
3
|
export const defaultConfigServiceHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
|
5
5
|
operation: getSmithyContext(context).operation,
|
|
6
|
-
region:
|
|
7
|
-
(
|
|
8
|
-
|
|
9
|
-
})(),
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
7
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
8
|
+
})(),
|
|
10
9
|
};
|
|
11
10
|
};
|
|
12
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
package/dist-es/models/enums.js
CHANGED
|
@@ -37,10 +37,14 @@ export const ResourceType = {
|
|
|
37
37
|
AmplifyApp: "AWS::Amplify::App",
|
|
38
38
|
AmplifyBranch: "AWS::Amplify::Branch",
|
|
39
39
|
Api: "AWS::ApiGatewayV2::Api",
|
|
40
|
+
ApiGatewayMethod: "AWS::ApiGateway::Method",
|
|
41
|
+
ApiGatewayUsagePlan: "AWS::ApiGateway::UsagePlan",
|
|
42
|
+
ApiGatewayV2Integration: "AWS::ApiGatewayV2::Integration",
|
|
40
43
|
AppConfigApplication: "AWS::AppConfig::Application",
|
|
41
44
|
AppConfigConfigurationProfile: "AWS::AppConfig::ConfigurationProfile",
|
|
42
45
|
AppConfigDeploymentStrategy: "AWS::AppConfig::DeploymentStrategy",
|
|
43
46
|
AppConfigEnvironment: "AWS::AppConfig::Environment",
|
|
47
|
+
AppConfigExtension: "AWS::AppConfig::Extension",
|
|
44
48
|
AppConfigExtensionAssociation: "AWS::AppConfig::ExtensionAssociation",
|
|
45
49
|
AppConfigHostedConfigurationVersion: "AWS::AppConfig::HostedConfigurationVersion",
|
|
46
50
|
AppFlowFlow: "AWS::AppFlow::Flow",
|
|
@@ -55,6 +59,7 @@ export const ResourceType = {
|
|
|
55
59
|
AppMeshVirtualService: "AWS::AppMesh::VirtualService",
|
|
56
60
|
AppRunnerService: "AWS::AppRunner::Service",
|
|
57
61
|
AppRunnerVpcConnector: "AWS::AppRunner::VpcConnector",
|
|
62
|
+
AppStreamAppBlockBuilder: "AWS::AppStream::AppBlockBuilder",
|
|
58
63
|
AppStreamApplication: "AWS::AppStream::Application",
|
|
59
64
|
AppStreamDirectoryConfig: "AWS::AppStream::DirectoryConfig",
|
|
60
65
|
AppStreamFleet: "AWS::AppStream::Fleet",
|
|
@@ -70,29 +75,46 @@ export const ResourceType = {
|
|
|
70
75
|
AuditManagerAssessment: "AWS::AuditManager::Assessment",
|
|
71
76
|
AutoScalingGroup: "AWS::AutoScaling::AutoScalingGroup",
|
|
72
77
|
AutoScalingWarmPool: "AWS::AutoScaling::WarmPool",
|
|
78
|
+
B2BICapability: "AWS::B2BI::Capability",
|
|
79
|
+
BCMDataExportsExport: "AWS::BCMDataExports::Export",
|
|
80
|
+
BackupGatewayHypervisor: "AWS::BackupGateway::Hypervisor",
|
|
73
81
|
BackupPlan: "AWS::Backup::BackupPlan",
|
|
74
82
|
BackupRecoveryPoint: "AWS::Backup::RecoveryPoint",
|
|
75
83
|
BackupReportPlan: "AWS::Backup::ReportPlan",
|
|
84
|
+
BackupRestoreTestingPlan: "AWS::Backup::RestoreTestingPlan",
|
|
76
85
|
BackupSelection: "AWS::Backup::BackupSelection",
|
|
77
86
|
BackupVault: "AWS::Backup::BackupVault",
|
|
78
87
|
BatchComputeEnvironment: "AWS::Batch::ComputeEnvironment",
|
|
79
88
|
BatchJobQueue: "AWS::Batch::JobQueue",
|
|
80
89
|
BatchSchedulingPolicy: "AWS::Batch::SchedulingPolicy",
|
|
90
|
+
BedrockAgentCoreBrowserCustom: "AWS::BedrockAgentCore::BrowserCustom",
|
|
91
|
+
BedrockAgentCoreRuntime: "AWS::BedrockAgentCore::Runtime",
|
|
92
|
+
BedrockApplicationInferenceProfile: "AWS::Bedrock::ApplicationInferenceProfile",
|
|
81
93
|
BedrockGuardrail: "AWS::Bedrock::Guardrail",
|
|
82
94
|
BedrockKnowledgeBase: "AWS::Bedrock::KnowledgeBase",
|
|
95
|
+
BedrockPrompt: "AWS::Bedrock::Prompt",
|
|
83
96
|
Bucket: "AWS::S3::Bucket",
|
|
84
97
|
BudgetsBudgetsAction: "AWS::Budgets::BudgetsAction",
|
|
85
98
|
CassandraKeyspace: "AWS::Cassandra::Keyspace",
|
|
86
99
|
Certificate: "AWS::ACM::Certificate",
|
|
100
|
+
CleanRoomsMLTrainingDataset: "AWS::CleanRoomsML::TrainingDataset",
|
|
87
101
|
Cloud9EnvironmentEC2: "AWS::Cloud9::EnvironmentEC2",
|
|
102
|
+
CloudFormationGuardHook: "AWS::CloudFormation::GuardHook",
|
|
103
|
+
CloudFormationLambdaHook: "AWS::CloudFormation::LambdaHook",
|
|
88
104
|
CloudFormationProduct: "AWS::ServiceCatalog::CloudFormationProduct",
|
|
89
105
|
CloudFormationProvisionedProduct: "AWS::ServiceCatalog::CloudFormationProvisionedProduct",
|
|
106
|
+
CloudFormationStackSet: "AWS::CloudFormation::StackSet",
|
|
107
|
+
CloudFrontKeyValueStore: "AWS::CloudFront::KeyValueStore",
|
|
108
|
+
CloudFrontPublicKey: "AWS::CloudFront::PublicKey",
|
|
109
|
+
CloudFrontRealtimeLogConfig: "AWS::CloudFront::RealtimeLogConfig",
|
|
110
|
+
CloudTrailEventDataStore: "AWS::CloudTrail::EventDataStore",
|
|
90
111
|
CloudWatchMetricStream: "AWS::CloudWatch::MetricStream",
|
|
91
112
|
Cluster: "AWS::Redshift::Cluster",
|
|
92
113
|
ClusterParameterGroup: "AWS::Redshift::ClusterParameterGroup",
|
|
93
114
|
ClusterSecurityGroup: "AWS::Redshift::ClusterSecurityGroup",
|
|
94
115
|
ClusterSnapshot: "AWS::Redshift::ClusterSnapshot",
|
|
95
116
|
ClusterSubnetGroup: "AWS::Redshift::ClusterSubnetGroup",
|
|
117
|
+
CodeArtifactDomain: "AWS::CodeArtifact::Domain",
|
|
96
118
|
CodeArtifactRepository: "AWS::CodeArtifact::Repository",
|
|
97
119
|
CodeBuildReportGroup: "AWS::CodeBuild::ReportGroup",
|
|
98
120
|
CodeDeployApplication: "AWS::CodeDeploy::Application",
|
|
@@ -104,11 +126,16 @@ export const ResourceType = {
|
|
|
104
126
|
CognitoUserPool: "AWS::Cognito::UserPool",
|
|
105
127
|
CognitoUserPoolClient: "AWS::Cognito::UserPoolClient",
|
|
106
128
|
CognitoUserPoolGroup: "AWS::Cognito::UserPoolGroup",
|
|
129
|
+
ComprehendFlywheel: "AWS::Comprehend::Flywheel",
|
|
130
|
+
ConfigAggregationAuthorization: "AWS::Config::AggregationAuthorization",
|
|
131
|
+
ConfigConformancePack: "AWS::Config::ConformancePack",
|
|
132
|
+
ConfigStoredQuery: "AWS::Config::StoredQuery",
|
|
107
133
|
ConformancePackCompliance: "AWS::Config::ConformancePackCompliance",
|
|
108
134
|
ConnectInstance: "AWS::Connect::Instance",
|
|
109
135
|
ConnectPhoneNumber: "AWS::Connect::PhoneNumber",
|
|
110
136
|
ConnectQuickConnect: "AWS::Connect::QuickConnect",
|
|
111
137
|
ConnectRule: "AWS::Connect::Rule",
|
|
138
|
+
ConnectSecurityProfile: "AWS::Connect::SecurityProfile",
|
|
112
139
|
ConnectUser: "AWS::Connect::User",
|
|
113
140
|
CustomerGateway: "AWS::EC2::CustomerGateway",
|
|
114
141
|
CustomerProfilesDomain: "AWS::CustomerProfiles::Domain",
|
|
@@ -123,6 +150,7 @@ export const ResourceType = {
|
|
|
123
150
|
DMSEndpoint: "AWS::DMS::Endpoint",
|
|
124
151
|
DMSEventSubscription: "AWS::DMS::EventSubscription",
|
|
125
152
|
DMSReplicationSubnetGroup: "AWS::DMS::ReplicationSubnetGroup",
|
|
153
|
+
DataSyncAgent: "AWS::DataSync::Agent",
|
|
126
154
|
DataSyncLocationEFS: "AWS::DataSync::LocationEFS",
|
|
127
155
|
DataSyncLocationFSxLustre: "AWS::DataSync::LocationFSxLustre",
|
|
128
156
|
DataSyncLocationFSxWindows: "AWS::DataSync::LocationFSxWindows",
|
|
@@ -132,6 +160,9 @@ export const ResourceType = {
|
|
|
132
160
|
DataSyncLocationS3: "AWS::DataSync::LocationS3",
|
|
133
161
|
DataSyncLocationSMB: "AWS::DataSync::LocationSMB",
|
|
134
162
|
DataSyncTask: "AWS::DataSync::Task",
|
|
163
|
+
DeadlineFleet: "AWS::Deadline::Fleet",
|
|
164
|
+
DeadlineMonitor: "AWS::Deadline::Monitor",
|
|
165
|
+
DeadlineQueueFleetAssociation: "AWS::Deadline::QueueFleetAssociation",
|
|
135
166
|
DetectiveGraph: "AWS::Detective::Graph",
|
|
136
167
|
DeviceFarmInstanceProfile: "AWS::DeviceFarm::InstanceProfile",
|
|
137
168
|
DeviceFarmProject: "AWS::DeviceFarm::Project",
|
|
@@ -147,6 +178,7 @@ export const ResourceType = {
|
|
|
147
178
|
EC2EIPAssociation: "AWS::EC2::EIPAssociation",
|
|
148
179
|
EC2IPAM: "AWS::EC2::IPAM",
|
|
149
180
|
EC2IPAMPool: "AWS::EC2::IPAMPool",
|
|
181
|
+
EC2IPAMPoolCidr: "AWS::EC2::IPAMPoolCidr",
|
|
150
182
|
EC2IPAMResourceDiscovery: "AWS::EC2::IPAMResourceDiscovery",
|
|
151
183
|
EC2IPAMResourceDiscoveryAssociation: "AWS::EC2::IPAMResourceDiscoveryAssociation",
|
|
152
184
|
EC2IPAMScope: "AWS::EC2::IPAMScope",
|
|
@@ -155,8 +187,11 @@ export const ResourceType = {
|
|
|
155
187
|
EC2NetworkInsightsAnalysis: "AWS::EC2::NetworkInsightsAnalysis",
|
|
156
188
|
EC2NetworkInsightsPath: "AWS::EC2::NetworkInsightsPath",
|
|
157
189
|
EC2PrefixList: "AWS::EC2::PrefixList",
|
|
190
|
+
EC2SecurityGroupVpcAssociation: "AWS::EC2::SecurityGroupVpcAssociation",
|
|
158
191
|
EC2SnapshotBlockPublicAccess: "AWS::EC2::SnapshotBlockPublicAccess",
|
|
159
192
|
EC2SpotFleet: "AWS::EC2::SpotFleet",
|
|
193
|
+
EC2SubnetCidrBlock: "AWS::EC2::SubnetCidrBlock",
|
|
194
|
+
EC2SubnetNetworkAclAssociation: "AWS::EC2::SubnetNetworkAclAssociation",
|
|
160
195
|
EC2SubnetRouteTableAssociation: "AWS::EC2::SubnetRouteTableAssociation",
|
|
161
196
|
EC2TrafficMirrorFilter: "AWS::EC2::TrafficMirrorFilter",
|
|
162
197
|
EC2TrafficMirrorSession: "AWS::EC2::TrafficMirrorSession",
|
|
@@ -166,11 +201,15 @@ export const ResourceType = {
|
|
|
166
201
|
EC2VPCBlockPublicAccessExclusion: "AWS::EC2::VPCBlockPublicAccessExclusion",
|
|
167
202
|
EC2VPCBlockPublicAccessOptions: "AWS::EC2::VPCBlockPublicAccessOptions",
|
|
168
203
|
EC2VPCEndpointConnectionNotification: "AWS::EC2::VPCEndpointConnectionNotification",
|
|
204
|
+
EC2VPCGatewayAttachment: "AWS::EC2::VPCGatewayAttachment",
|
|
169
205
|
EC2VPNConnectionRoute: "AWS::EC2::VPNConnectionRoute",
|
|
206
|
+
EC2VerifiedAccessInstance: "AWS::EC2::VerifiedAccessInstance",
|
|
170
207
|
ECRPublicRepository: "AWS::ECR::PublicRepository",
|
|
171
208
|
ECRPullThroughCacheRule: "AWS::ECR::PullThroughCacheRule",
|
|
172
209
|
ECRRegistryPolicy: "AWS::ECR::RegistryPolicy",
|
|
210
|
+
ECRReplicationConfiguration: "AWS::ECR::ReplicationConfiguration",
|
|
173
211
|
ECRRepository: "AWS::ECR::Repository",
|
|
212
|
+
ECRRepositoryCreationTemplate: "AWS::ECR::RepositoryCreationTemplate",
|
|
174
213
|
ECSCapacityProvider: "AWS::ECS::CapacityProvider",
|
|
175
214
|
ECSCluster: "AWS::ECS::Cluster",
|
|
176
215
|
ECSService: "AWS::ECS::Service",
|
|
@@ -183,9 +222,16 @@ export const ResourceType = {
|
|
|
183
222
|
EKSCluster: "AWS::EKS::Cluster",
|
|
184
223
|
EKSFargateProfile: "AWS::EKS::FargateProfile",
|
|
185
224
|
EKSIdentityProviderConfig: "AWS::EKS::IdentityProviderConfig",
|
|
225
|
+
EMRContainersVirtualCluster: "AWS::EMRContainers::VirtualCluster",
|
|
186
226
|
EMRSecurityConfiguration: "AWS::EMR::SecurityConfiguration",
|
|
227
|
+
EMRServerlessApplication: "AWS::EMRServerless::Application",
|
|
228
|
+
EMRStudio: "AWS::EMR::Studio",
|
|
187
229
|
EgressOnlyInternetGateway: "AWS::EC2::EgressOnlyInternetGateway",
|
|
230
|
+
ElasticLoadBalancingV2TargetGroup: "AWS::ElasticLoadBalancingV2::TargetGroup",
|
|
188
231
|
EncryptionConfig: "AWS::XRay::EncryptionConfig",
|
|
232
|
+
EntityResolutionIdMappingWorkflow: "AWS::EntityResolution::IdMappingWorkflow",
|
|
233
|
+
EntityResolutionMatchingWorkflow: "AWS::EntityResolution::MatchingWorkflow",
|
|
234
|
+
EntityResolutionSchemaMapping: "AWS::EntityResolution::SchemaMapping",
|
|
189
235
|
Environment: "AWS::ElasticBeanstalk::Environment",
|
|
190
236
|
EventSchemasDiscoverer: "AWS::EventSchemas::Discoverer",
|
|
191
237
|
EventSchemasRegistry: "AWS::EventSchemas::Registry",
|
|
@@ -211,10 +257,12 @@ export const ResourceType = {
|
|
|
211
257
|
FraudDetectorOutcome: "AWS::FraudDetector::Outcome",
|
|
212
258
|
FraudDetectorVariable: "AWS::FraudDetector::Variable",
|
|
213
259
|
Function: "AWS::Lambda::Function",
|
|
260
|
+
GameLiftBuild: "AWS::GameLift::Build",
|
|
214
261
|
GlobalAcceleratorAccelerator: "AWS::GlobalAccelerator::Accelerator",
|
|
215
262
|
GlobalAcceleratorEndpointGroup: "AWS::GlobalAccelerator::EndpointGroup",
|
|
216
263
|
GlobalAcceleratorListener: "AWS::GlobalAccelerator::Listener",
|
|
217
264
|
GlueClassifier: "AWS::Glue::Classifier",
|
|
265
|
+
GlueDatabase: "AWS::Glue::Database",
|
|
218
266
|
GlueJob: "AWS::Glue::Job",
|
|
219
267
|
GlueMLTransform: "AWS::Glue::MLTransform",
|
|
220
268
|
GrafanaWorkspace: "AWS::Grafana::Workspace",
|
|
@@ -226,6 +274,7 @@ export const ResourceType = {
|
|
|
226
274
|
GuardDutyDetector: "AWS::GuardDuty::Detector",
|
|
227
275
|
GuardDutyFilter: "AWS::GuardDuty::Filter",
|
|
228
276
|
GuardDutyIPSet: "AWS::GuardDuty::IPSet",
|
|
277
|
+
GuardDutyMalwareProtectionPlan: "AWS::GuardDuty::MalwareProtectionPlan",
|
|
229
278
|
GuardDutyThreatIntelSet: "AWS::GuardDuty::ThreatIntelSet",
|
|
230
279
|
HealthLakeFHIRDatastore: "AWS::HealthLake::FHIRDatastore",
|
|
231
280
|
Host: "AWS::EC2::Host",
|
|
@@ -242,6 +291,7 @@ export const ResourceType = {
|
|
|
242
291
|
ImageBuilderImagePipeline: "AWS::ImageBuilder::ImagePipeline",
|
|
243
292
|
ImageBuilderImageRecipe: "AWS::ImageBuilder::ImageRecipe",
|
|
244
293
|
ImageBuilderInfrastructureConfiguration: "AWS::ImageBuilder::InfrastructureConfiguration",
|
|
294
|
+
ImageBuilderLifecyclePolicy: "AWS::ImageBuilder::LifecyclePolicy",
|
|
245
295
|
InspectorV2Activation: "AWS::InspectorV2::Activation",
|
|
246
296
|
InspectorV2Filter: "AWS::InspectorV2::Filter",
|
|
247
297
|
Instance: "AWS::EC2::Instance",
|
|
@@ -253,8 +303,10 @@ export const ResourceType = {
|
|
|
253
303
|
IoTAnalyticsPipeline: "AWS::IoTAnalytics::Pipeline",
|
|
254
304
|
IoTAuthorizer: "AWS::IoT::Authorizer",
|
|
255
305
|
IoTCACertificate: "AWS::IoT::CACertificate",
|
|
306
|
+
IoTCoreDeviceAdvisorSuiteDefinition: "AWS::IoTCoreDeviceAdvisor::SuiteDefinition",
|
|
256
307
|
IoTCustomMetric: "AWS::IoT::CustomMetric",
|
|
257
308
|
IoTDimension: "AWS::IoT::Dimension",
|
|
309
|
+
IoTDomainConfiguration: "AWS::IoT::DomainConfiguration",
|
|
258
310
|
IoTEventsAlarmModel: "AWS::IoTEvents::AlarmModel",
|
|
259
311
|
IoTEventsDetectorModel: "AWS::IoTEvents::DetectorModel",
|
|
260
312
|
IoTEventsInput: "AWS::IoTEvents::Input",
|
|
@@ -266,11 +318,13 @@ export const ResourceType = {
|
|
|
266
318
|
IoTRoleAlias: "AWS::IoT::RoleAlias",
|
|
267
319
|
IoTScheduledAudit: "AWS::IoT::ScheduledAudit",
|
|
268
320
|
IoTSecurityProfile: "AWS::IoT::SecurityProfile",
|
|
321
|
+
IoTSiteWiseAsset: "AWS::IoTSiteWise::Asset",
|
|
269
322
|
IoTSiteWiseAssetModel: "AWS::IoTSiteWise::AssetModel",
|
|
270
323
|
IoTSiteWiseDashboard: "AWS::IoTSiteWise::Dashboard",
|
|
271
324
|
IoTSiteWiseGateway: "AWS::IoTSiteWise::Gateway",
|
|
272
325
|
IoTSiteWisePortal: "AWS::IoTSiteWise::Portal",
|
|
273
326
|
IoTSiteWiseProject: "AWS::IoTSiteWise::Project",
|
|
327
|
+
IoTThingGroup: "AWS::IoT::ThingGroup",
|
|
274
328
|
IoTTwinMakerComponentType: "AWS::IoTTwinMaker::ComponentType",
|
|
275
329
|
IoTTwinMakerEntity: "AWS::IoTTwinMaker::Entity",
|
|
276
330
|
IoTTwinMakerScene: "AWS::IoTTwinMaker::Scene",
|
|
@@ -281,6 +335,7 @@ export const ResourceType = {
|
|
|
281
335
|
IoTWirelessServiceProfile: "AWS::IoTWireless::ServiceProfile",
|
|
282
336
|
KMSAlias: "AWS::KMS::Alias",
|
|
283
337
|
KafkaConnectConnector: "AWS::KafkaConnect::Connector",
|
|
338
|
+
KafkaConnectCustomPlugin: "AWS::KafkaConnect::CustomPlugin",
|
|
284
339
|
KendraIndex: "AWS::Kendra::Index",
|
|
285
340
|
Key: "AWS::KMS::Key",
|
|
286
341
|
KinesisAnalyticsV2Application: "AWS::KinesisAnalyticsV2::Application",
|
|
@@ -301,6 +356,7 @@ export const ResourceType = {
|
|
|
301
356
|
ListenerV2: "AWS::ElasticLoadBalancingV2::Listener",
|
|
302
357
|
LoadBalancer: "AWS::ElasticLoadBalancing::LoadBalancer",
|
|
303
358
|
LoadBalancerV2: "AWS::ElasticLoadBalancingV2::LoadBalancer",
|
|
359
|
+
LocationAPIKey: "AWS::Location::APIKey",
|
|
304
360
|
LogsDestination: "AWS::Logs::Destination",
|
|
305
361
|
LookoutMetricsAlert: "AWS::LookoutMetrics::Alert",
|
|
306
362
|
LookoutVisionProject: "AWS::LookoutVision::Project",
|
|
@@ -309,6 +365,7 @@ export const ResourceType = {
|
|
|
309
365
|
MSKCluster: "AWS::MSK::Cluster",
|
|
310
366
|
MSKClusterPolicy: "AWS::MSK::ClusterPolicy",
|
|
311
367
|
MSKConfiguration: "AWS::MSK::Configuration",
|
|
368
|
+
MSKServerlessCluster: "AWS::MSK::ServerlessCluster",
|
|
312
369
|
MSKVpcConnection: "AWS::MSK::VpcConnection",
|
|
313
370
|
ManagedInstanceInventory: "AWS::SSM::ManagedInstanceInventory",
|
|
314
371
|
ManagedRuleSetV2: "AWS::WAFv2::ManagedRuleSet",
|
|
@@ -318,6 +375,9 @@ export const ResourceType = {
|
|
|
318
375
|
MediaConnectGateway: "AWS::MediaConnect::Gateway",
|
|
319
376
|
MediaPackagePackagingConfiguration: "AWS::MediaPackage::PackagingConfiguration",
|
|
320
377
|
MediaPackagePackagingGroup: "AWS::MediaPackage::PackagingGroup",
|
|
378
|
+
MediaPackageV2Channel: "AWS::MediaPackageV2::Channel",
|
|
379
|
+
MediaPackageV2OriginEndpoint: "AWS::MediaPackageV2::OriginEndpoint",
|
|
380
|
+
MediaTailorLiveSource: "AWS::MediaTailor::LiveSource",
|
|
321
381
|
MediaTailorPlaybackConfiguration: "AWS::MediaTailor::PlaybackConfiguration",
|
|
322
382
|
MemoryDBSubnetGroup: "AWS::MemoryDB::SubnetGroup",
|
|
323
383
|
NatGateway: "AWS::EC2::NatGateway",
|
|
@@ -334,10 +394,15 @@ export const ResourceType = {
|
|
|
334
394
|
NetworkManagerLink: "AWS::NetworkManager::Link",
|
|
335
395
|
NetworkManagerLinkAssociation: "AWS::NetworkManager::LinkAssociation",
|
|
336
396
|
NetworkManagerSite: "AWS::NetworkManager::Site",
|
|
397
|
+
NetworkManagerTransitGatewayPeering: "AWS::NetworkManager::TransitGatewayPeering",
|
|
337
398
|
NetworkManagerTransitGatewayRegistration: "AWS::NetworkManager::TransitGatewayRegistration",
|
|
338
399
|
OpenSearchDomain: "AWS::OpenSearch::Domain",
|
|
339
400
|
OpenSearchServerlessCollection: "AWS::OpenSearchServerless::Collection",
|
|
401
|
+
OpenSearchServerlessSecurityConfig: "AWS::OpenSearchServerless::SecurityConfig",
|
|
340
402
|
OpenSearchServerlessVpcEndpoint: "AWS::OpenSearchServerless::VpcEndpoint",
|
|
403
|
+
OrganizationsOrganizationalUnit: "AWS::Organizations::OrganizationalUnit",
|
|
404
|
+
PCAConnectorADConnector: "AWS::PCAConnectorAD::Connector",
|
|
405
|
+
PCAConnectorADDirectoryRegistration: "AWS::PCAConnectorAD::DirectoryRegistration",
|
|
341
406
|
PanoramaPackage: "AWS::Panorama::Package",
|
|
342
407
|
PatchCompliance: "AWS::SSM::PatchCompliance",
|
|
343
408
|
PersonalizeDataset: "AWS::Personalize::Dataset",
|
|
@@ -363,12 +428,14 @@ export const ResourceType = {
|
|
|
363
428
|
QuickSightTemplate: "AWS::QuickSight::Template",
|
|
364
429
|
QuickSightTheme: "AWS::QuickSight::Theme",
|
|
365
430
|
RDSGlobalCluster: "AWS::RDS::GlobalCluster",
|
|
431
|
+
RDSIntegration: "AWS::RDS::Integration",
|
|
366
432
|
RDSOptionGroup: "AWS::RDS::OptionGroup",
|
|
367
433
|
RUMAppMonitor: "AWS::RUM::AppMonitor",
|
|
368
434
|
RateBasedRule: "AWS::WAF::RateBasedRule",
|
|
369
435
|
RedshiftEndpointAccess: "AWS::Redshift::EndpointAccess",
|
|
370
436
|
RedshiftEndpointAuthorization: "AWS::Redshift::EndpointAuthorization",
|
|
371
437
|
RedshiftEventSubscription: "AWS::Redshift::EventSubscription",
|
|
438
|
+
RedshiftIntegration: "AWS::Redshift::Integration",
|
|
372
439
|
RedshiftScheduledAction: "AWS::Redshift::ScheduledAction",
|
|
373
440
|
RegexPatternSetV2: "AWS::WAFv2::RegexPatternSet",
|
|
374
441
|
RegionalProtection: "AWS::ShieldRegional::Protection",
|
|
@@ -386,8 +453,12 @@ export const ResourceType = {
|
|
|
386
453
|
RoboMakerRobotApplicationVersion: "AWS::RoboMaker::RobotApplicationVersion",
|
|
387
454
|
RoboMakerSimulationApplication: "AWS::RoboMaker::SimulationApplication",
|
|
388
455
|
Role: "AWS::IAM::Role",
|
|
456
|
+
RolesAnywhereProfile: "AWS::RolesAnywhere::Profile",
|
|
457
|
+
RolesAnywhereTrustAnchor: "AWS::RolesAnywhere::TrustAnchor",
|
|
458
|
+
Route53DNSSEC: "AWS::Route53::DNSSEC",
|
|
389
459
|
Route53HostedZone: "AWS::Route53::HostedZone",
|
|
390
460
|
Route53ProfilesProfile: "AWS::Route53Profiles::Profile",
|
|
461
|
+
Route53ProfilesProfileAssociation: "AWS::Route53Profiles::ProfileAssociation",
|
|
391
462
|
Route53RecoveryControlCluster: "AWS::Route53RecoveryControl::Cluster",
|
|
392
463
|
Route53RecoveryControlControlPanel: "AWS::Route53RecoveryControl::ControlPanel",
|
|
393
464
|
Route53RecoveryControlRoutingControl: "AWS::Route53RecoveryControl::RoutingControl",
|
|
@@ -408,30 +479,49 @@ export const ResourceType = {
|
|
|
408
479
|
Rule: "AWS::WAF::Rule",
|
|
409
480
|
RuleGroup: "AWS::WAF::RuleGroup",
|
|
410
481
|
RuleGroupV2: "AWS::WAFv2::RuleGroup",
|
|
482
|
+
S3AccessGrant: "AWS::S3::AccessGrant",
|
|
483
|
+
S3AccessGrantsInstance: "AWS::S3::AccessGrantsInstance",
|
|
484
|
+
S3AccessGrantsLocation: "AWS::S3::AccessGrantsLocation",
|
|
411
485
|
S3AccessPoint: "AWS::S3::AccessPoint",
|
|
412
486
|
S3ExpressBucketPolicy: "AWS::S3Express::BucketPolicy",
|
|
413
487
|
S3ExpressDirectoryBucket: "AWS::S3Express::DirectoryBucket",
|
|
414
488
|
S3MultiRegionAccessPoint: "AWS::S3::MultiRegionAccessPoint",
|
|
415
489
|
S3StorageLens: "AWS::S3::StorageLens",
|
|
416
490
|
S3StorageLensGroup: "AWS::S3::StorageLensGroup",
|
|
491
|
+
S3TablesTableBucket: "AWS::S3Tables::TableBucket",
|
|
492
|
+
S3TablesTableBucketPolicy: "AWS::S3Tables::TableBucketPolicy",
|
|
417
493
|
SESConfigurationSet: "AWS::SES::ConfigurationSet",
|
|
418
494
|
SESContactList: "AWS::SES::ContactList",
|
|
495
|
+
SESDedicatedIpPool: "AWS::SES::DedicatedIpPool",
|
|
496
|
+
SESMailManagerTrafficPolicy: "AWS::SES::MailManagerTrafficPolicy",
|
|
419
497
|
SESReceiptFilter: "AWS::SES::ReceiptFilter",
|
|
420
498
|
SESReceiptRuleSet: "AWS::SES::ReceiptRuleSet",
|
|
421
499
|
SESTemplate: "AWS::SES::Template",
|
|
500
|
+
SSMContactsContact: "AWS::SSMContacts::Contact",
|
|
422
501
|
SSMDocument: "AWS::SSM::Document",
|
|
502
|
+
SSMIncidentsResponsePlan: "AWS::SSMIncidents::ResponsePlan",
|
|
503
|
+
SSMResourceDataSync: "AWS::SSM::ResourceDataSync",
|
|
423
504
|
SageMakerAppImageConfig: "AWS::SageMaker::AppImageConfig",
|
|
424
505
|
SageMakerCodeRepository: "AWS::SageMaker::CodeRepository",
|
|
506
|
+
SageMakerDataQualityJobDefinition: "AWS::SageMaker::DataQualityJobDefinition",
|
|
425
507
|
SageMakerDomain: "AWS::SageMaker::Domain",
|
|
426
508
|
SageMakerFeatureGroup: "AWS::SageMaker::FeatureGroup",
|
|
427
509
|
SageMakerImage: "AWS::SageMaker::Image",
|
|
428
510
|
SageMakerInferenceExperiment: "AWS::SageMaker::InferenceExperiment",
|
|
511
|
+
SageMakerMlflowTrackingServer: "AWS::SageMaker::MlflowTrackingServer",
|
|
429
512
|
SageMakerModel: "AWS::SageMaker::Model",
|
|
513
|
+
SageMakerModelBiasJobDefinition: "AWS::SageMaker::ModelBiasJobDefinition",
|
|
514
|
+
SageMakerModelExplainabilityJobDefinition: "AWS::SageMaker::ModelExplainabilityJobDefinition",
|
|
515
|
+
SageMakerModelQualityJobDefinition: "AWS::SageMaker::ModelQualityJobDefinition",
|
|
430
516
|
SageMakerNotebookInstanceLifecycleConfig: "AWS::SageMaker::NotebookInstanceLifecycleConfig",
|
|
517
|
+
SageMakerStudioLifecycleConfig: "AWS::SageMaker::StudioLifecycleConfig",
|
|
518
|
+
SageMakerUserProfile: "AWS::SageMaker::UserProfile",
|
|
431
519
|
SageMakerWorkteam: "AWS::SageMaker::Workteam",
|
|
432
520
|
ScalingPolicy: "AWS::AutoScaling::ScalingPolicy",
|
|
433
521
|
ScheduledAction: "AWS::AutoScaling::ScheduledAction",
|
|
434
522
|
Secret: "AWS::SecretsManager::Secret",
|
|
523
|
+
SecretsManagerResourcePolicy: "AWS::SecretsManager::ResourcePolicy",
|
|
524
|
+
SecretsManagerRotationSchedule: "AWS::SecretsManager::RotationSchedule",
|
|
435
525
|
SecurityGroup: "AWS::EC2::SecurityGroup",
|
|
436
526
|
SecurityHubStandard: "AWS::SecurityHub::Standard",
|
|
437
527
|
ServiceDiscoveryHttpNamespace: "AWS::ServiceDiscovery::HttpNamespace",
|
|
@@ -453,6 +543,7 @@ export const ResourceType = {
|
|
|
453
543
|
TransferCertificate: "AWS::Transfer::Certificate",
|
|
454
544
|
TransferConnector: "AWS::Transfer::Connector",
|
|
455
545
|
TransferProfile: "AWS::Transfer::Profile",
|
|
546
|
+
TransferServer: "AWS::Transfer::Server",
|
|
456
547
|
TransferWorkflow: "AWS::Transfer::Workflow",
|
|
457
548
|
TransitGateway: "AWS::EC2::TransitGateway",
|
|
458
549
|
TransitGatewayAttachment: "AWS::EC2::TransitGatewayAttachment",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
1
2
|
export * from "./DescribeAggregateComplianceByConfigRulesPaginator";
|
|
2
3
|
export * from "./DescribeAggregateComplianceByConformancePacksPaginator";
|
|
3
4
|
export * from "./DescribeAggregationAuthorizationsPaginator";
|
|
@@ -5,16 +6,15 @@ export * from "./DescribeComplianceByConfigRulePaginator";
|
|
|
5
6
|
export * from "./DescribeComplianceByResourcePaginator";
|
|
6
7
|
export * from "./DescribeConfigRuleEvaluationStatusPaginator";
|
|
7
8
|
export * from "./DescribeConfigRulesPaginator";
|
|
8
|
-
export * from "./DescribeConfigurationAggregatorSourcesStatusPaginator";
|
|
9
9
|
export * from "./DescribeConfigurationAggregatorsPaginator";
|
|
10
|
+
export * from "./DescribeConfigurationAggregatorSourcesStatusPaginator";
|
|
10
11
|
export * from "./DescribeConformancePackCompliancePaginator";
|
|
11
|
-
export * from "./Interfaces";
|
|
12
|
-
export * from "./DescribeConformancePackStatusPaginator";
|
|
13
12
|
export * from "./DescribeConformancePacksPaginator";
|
|
14
|
-
export * from "./
|
|
13
|
+
export * from "./DescribeConformancePackStatusPaginator";
|
|
15
14
|
export * from "./DescribeOrganizationConfigRulesPaginator";
|
|
16
|
-
export * from "./
|
|
15
|
+
export * from "./DescribeOrganizationConfigRuleStatusesPaginator";
|
|
17
16
|
export * from "./DescribeOrganizationConformancePacksPaginator";
|
|
17
|
+
export * from "./DescribeOrganizationConformancePackStatusesPaginator";
|
|
18
18
|
export * from "./DescribePendingAggregationRequestsPaginator";
|
|
19
19
|
export * from "./DescribeRemediationExceptionsPaginator";
|
|
20
20
|
export * from "./DescribeRemediationExecutionStatusPaginator";
|
|
@@ -20,8 +20,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
20
20
|
defaultsMode,
|
|
21
21
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
22
22
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
23
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
24
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
23
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
25
24
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
26
25
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
27
26
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import {
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
|
|
3
3
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
|
-
import {
|
|
4
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
5
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
6
6
|
import { Hash } from "@smithy/hash-node";
|
|
7
7
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -30,11 +30,9 @@ export const getRuntimeConfig = (config) => {
|
|
|
30
30
|
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
31
31
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
32
32
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
33
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
35
34
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
36
|
-
region: config?.region ??
|
|
37
|
-
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
35
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
38
36
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
39
37
|
retryMode: config?.retryMode ??
|
|
40
38
|
loadNodeConfig({
|