@aws-sdk/client-cloudfront 3.796.0 → 3.798.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 +200 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -1
- package/dist-cjs/index.js +2696 -655
- package/dist-es/CloudFront.js +50 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -1
- package/dist-es/commands/AssociateDistributionTenantWebACLCommand.js +22 -0
- package/dist-es/commands/AssociateDistributionWebACLCommand.js +22 -0
- package/dist-es/commands/CreateConnectionGroupCommand.js +22 -0
- package/dist-es/commands/CreateDistributionTenantCommand.js +22 -0
- package/dist-es/commands/CreateInvalidationForDistributionTenantCommand.js +22 -0
- package/dist-es/commands/DeleteConnectionGroupCommand.js +22 -0
- package/dist-es/commands/DeleteDistributionTenantCommand.js +22 -0
- package/dist-es/commands/DisassociateDistributionTenantWebACLCommand.js +22 -0
- package/dist-es/commands/DisassociateDistributionWebACLCommand.js +22 -0
- package/dist-es/commands/GetConnectionGroupByRoutingEndpointCommand.js +22 -0
- package/dist-es/commands/GetConnectionGroupCommand.js +22 -0
- package/dist-es/commands/GetDistributionTenantByDomainCommand.js +22 -0
- package/dist-es/commands/GetDistributionTenantCommand.js +22 -0
- package/dist-es/commands/GetInvalidationForDistributionTenantCommand.js +22 -0
- package/dist-es/commands/GetManagedCertificateDetailsCommand.js +22 -0
- package/dist-es/commands/ListConnectionGroupsCommand.js +22 -0
- package/dist-es/commands/ListDistributionTenantsByCustomizationCommand.js +22 -0
- package/dist-es/commands/ListDistributionTenantsCommand.js +22 -0
- package/dist-es/commands/ListDistributionsByConnectionModeCommand.js +23 -0
- package/dist-es/commands/ListDomainConflictsCommand.js +22 -0
- package/dist-es/commands/ListInvalidationsForDistributionTenantCommand.js +22 -0
- package/dist-es/commands/TestFunctionCommand.js +1 -1
- package/dist-es/commands/UpdateConnectionGroupCommand.js +22 -0
- package/dist-es/commands/UpdateDistributionCommand.js +1 -1
- package/dist-es/commands/UpdateDistributionTenantCommand.js +22 -0
- package/dist-es/commands/UpdateDistributionWithStagingConfigCommand.js +1 -1
- package/dist-es/commands/UpdateDomainAssociationCommand.js +22 -0
- package/dist-es/commands/UpdateFunctionCommand.js +1 -1
- package/dist-es/commands/VerifyDnsConfigurationCommand.js +22 -0
- package/dist-es/commands/index.js +26 -1
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +77 -201
- package/dist-es/models/models_1.js +203 -58
- package/dist-es/models/models_2.js +52 -0
- package/dist-es/pagination/ListConnectionGroupsPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionTenantsByCustomizationPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionTenantsPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByConnectionModePaginator.js +4 -0
- package/dist-es/pagination/ListDomainConflictsPaginator.js +4 -0
- package/dist-es/pagination/ListInvalidationsForDistributionTenantPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restXml.js +1907 -460
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForInvalidationForDistributionTenantCompleted.js +31 -0
- package/dist-types/CloudFront.d.ts +178 -0
- package/dist-types/CloudFrontClient.d.ts +27 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +15 -1
- package/dist-types/commands/AssociateDistributionTenantWebACLCommand.d.ts +92 -0
- package/dist-types/commands/AssociateDistributionWebACLCommand.d.ts +92 -0
- package/dist-types/commands/CopyDistributionCommand.d.ts +16 -1
- package/dist-types/commands/CreateConnectionGroupCommand.d.ts +123 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +35 -2
- package/dist-types/commands/CreateDistributionTenantCommand.d.ts +185 -0
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +32 -2
- package/dist-types/commands/CreateInvalidationForDistributionTenantCommand.d.ts +119 -0
- package/dist-types/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreatePublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +2 -2
- package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +2 -2
- package/dist-types/commands/DeleteConnectionGroupCommand.d.ts +90 -0
- package/dist-types/commands/DeleteDistributionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDistributionTenantCommand.d.ts +88 -0
- package/dist-types/commands/DisassociateDistributionTenantWebACLCommand.d.ts +90 -0
- package/dist-types/commands/DisassociateDistributionWebACLCommand.d.ts +90 -0
- package/dist-types/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +99 -0
- package/dist-types/commands/GetConnectionGroupCommand.d.ts +99 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +16 -1
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +16 -1
- package/dist-types/commands/GetDistributionTenantByDomainCommand.d.ts +124 -0
- package/dist-types/commands/GetDistributionTenantCommand.d.ts +124 -0
- package/dist-types/commands/GetInvalidationForDistributionTenantCommand.d.ts +95 -0
- package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +89 -0
- package/dist-types/commands/GetStreamingDistributionCommand.d.ts +1 -1
- package/dist-types/commands/GetStreamingDistributionConfigCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionGroupsCommand.d.ts +100 -0
- package/dist-types/commands/ListDistributionTenantsByCustomizationCommand.d.ts +120 -0
- package/dist-types/commands/ListDistributionTenantsCommand.d.ts +121 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +3 -1
- package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +392 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +3 -1
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +3 -1
- package/dist-types/commands/ListDistributionsCommand.d.ts +3 -1
- package/dist-types/commands/ListDomainConflictsCommand.d.ts +96 -0
- package/dist-types/commands/ListInvalidationsForDistributionTenantCommand.d.ts +96 -0
- package/dist-types/commands/ListStreamingDistributionsCommand.d.ts +3 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcOriginsCommand.d.ts +1 -1
- package/dist-types/commands/PublishFunctionCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestFunctionCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCachePolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionGroupCommand.d.ts +123 -0
- package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -3
- package/dist-types/commands/UpdateDistributionTenantCommand.d.ts +182 -0
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -2
- package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +98 -0
- package/dist-types/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateKeyGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStreamingDistributionCommand.d.ts +3 -3
- package/dist-types/commands/UpdateVpcOriginCommand.d.ts +1 -1
- package/dist-types/commands/VerifyDnsConfigurationCommand.d.ts +88 -0
- package/dist-types/commands/index.d.ts +26 -1
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +830 -869
- package/dist-types/models/models_1.d.ts +2571 -2123
- package/dist-types/models/models_2.d.ts +1244 -0
- package/dist-types/pagination/ListConnectionGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionTenantsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByConnectionModePaginator.d.ts +7 -0
- package/dist-types/pagination/ListDomainConflictsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restXml.d.ts +225 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/CloudFront.d.ts +476 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +152 -2
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +3 -0
- package/dist-types/ts3.4/commands/AssociateDistributionTenantWebACLCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateDistributionWebACLCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateConnectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDistributionTenantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateInvalidationForDistributionTenantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreatePublicKeyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteConnectionGroupCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteDistributionTenantCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisassociateDistributionTenantWebACLCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateDistributionWebACLCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDistributionTenantByDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDistributionTenantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetInvalidationForDistributionTenantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConnectionGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionTenantsByCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionTenantsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByConnectionModeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDomainConflictsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListInvalidationsForDistributionTenantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListStreamingDistributionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PublishFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TestFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCachePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConnectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDistributionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDistributionTenantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDistributionWithStagingConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFunctionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateKeyGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePublicKeyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateStreamingDistributionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/VerifyDnsConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -1
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +190 -214
- package/dist-types/ts3.4/models/models_1.d.ts +413 -275
- package/dist-types/ts3.4/models/models_2.d.ts +363 -0
- package/dist-types/ts3.4/pagination/ListConnectionGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionTenantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByConnectionModePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDomainConflictsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +300 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +14 -0
- package/package.json +11 -11
|
@@ -8,17 +8,22 @@ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration
|
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AssociateAliasCommandInput, AssociateAliasCommandOutput } from "./commands/AssociateAliasCommand";
|
|
11
|
+
import { AssociateDistributionTenantWebACLCommandInput, AssociateDistributionTenantWebACLCommandOutput } from "./commands/AssociateDistributionTenantWebACLCommand";
|
|
12
|
+
import { AssociateDistributionWebACLCommandInput, AssociateDistributionWebACLCommandOutput } from "./commands/AssociateDistributionWebACLCommand";
|
|
11
13
|
import { CopyDistributionCommandInput, CopyDistributionCommandOutput } from "./commands/CopyDistributionCommand";
|
|
12
14
|
import { CreateAnycastIpListCommandInput, CreateAnycastIpListCommandOutput } from "./commands/CreateAnycastIpListCommand";
|
|
13
15
|
import { CreateCachePolicyCommandInput, CreateCachePolicyCommandOutput } from "./commands/CreateCachePolicyCommand";
|
|
14
16
|
import { CreateCloudFrontOriginAccessIdentityCommandInput, CreateCloudFrontOriginAccessIdentityCommandOutput } from "./commands/CreateCloudFrontOriginAccessIdentityCommand";
|
|
17
|
+
import { CreateConnectionGroupCommandInput, CreateConnectionGroupCommandOutput } from "./commands/CreateConnectionGroupCommand";
|
|
15
18
|
import { CreateContinuousDeploymentPolicyCommandInput, CreateContinuousDeploymentPolicyCommandOutput } from "./commands/CreateContinuousDeploymentPolicyCommand";
|
|
16
19
|
import { CreateDistributionCommandInput, CreateDistributionCommandOutput } from "./commands/CreateDistributionCommand";
|
|
20
|
+
import { CreateDistributionTenantCommandInput, CreateDistributionTenantCommandOutput } from "./commands/CreateDistributionTenantCommand";
|
|
17
21
|
import { CreateDistributionWithTagsCommandInput, CreateDistributionWithTagsCommandOutput } from "./commands/CreateDistributionWithTagsCommand";
|
|
18
22
|
import { CreateFieldLevelEncryptionConfigCommandInput, CreateFieldLevelEncryptionConfigCommandOutput } from "./commands/CreateFieldLevelEncryptionConfigCommand";
|
|
19
23
|
import { CreateFieldLevelEncryptionProfileCommandInput, CreateFieldLevelEncryptionProfileCommandOutput } from "./commands/CreateFieldLevelEncryptionProfileCommand";
|
|
20
24
|
import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
|
|
21
25
|
import { CreateInvalidationCommandInput, CreateInvalidationCommandOutput } from "./commands/CreateInvalidationCommand";
|
|
26
|
+
import { CreateInvalidationForDistributionTenantCommandInput, CreateInvalidationForDistributionTenantCommandOutput } from "./commands/CreateInvalidationForDistributionTenantCommand";
|
|
22
27
|
import { CreateKeyGroupCommandInput, CreateKeyGroupCommandOutput } from "./commands/CreateKeyGroupCommand";
|
|
23
28
|
import { CreateKeyValueStoreCommandInput, CreateKeyValueStoreCommandOutput } from "./commands/CreateKeyValueStoreCommand";
|
|
24
29
|
import { CreateMonitoringSubscriptionCommandInput, CreateMonitoringSubscriptionCommandOutput } from "./commands/CreateMonitoringSubscriptionCommand";
|
|
@@ -33,8 +38,10 @@ import { CreateVpcOriginCommandInput, CreateVpcOriginCommandOutput } from "./com
|
|
|
33
38
|
import { DeleteAnycastIpListCommandInput, DeleteAnycastIpListCommandOutput } from "./commands/DeleteAnycastIpListCommand";
|
|
34
39
|
import { DeleteCachePolicyCommandInput, DeleteCachePolicyCommandOutput } from "./commands/DeleteCachePolicyCommand";
|
|
35
40
|
import { DeleteCloudFrontOriginAccessIdentityCommandInput, DeleteCloudFrontOriginAccessIdentityCommandOutput } from "./commands/DeleteCloudFrontOriginAccessIdentityCommand";
|
|
41
|
+
import { DeleteConnectionGroupCommandInput, DeleteConnectionGroupCommandOutput } from "./commands/DeleteConnectionGroupCommand";
|
|
36
42
|
import { DeleteContinuousDeploymentPolicyCommandInput, DeleteContinuousDeploymentPolicyCommandOutput } from "./commands/DeleteContinuousDeploymentPolicyCommand";
|
|
37
43
|
import { DeleteDistributionCommandInput, DeleteDistributionCommandOutput } from "./commands/DeleteDistributionCommand";
|
|
44
|
+
import { DeleteDistributionTenantCommandInput, DeleteDistributionTenantCommandOutput } from "./commands/DeleteDistributionTenantCommand";
|
|
38
45
|
import { DeleteFieldLevelEncryptionConfigCommandInput, DeleteFieldLevelEncryptionConfigCommandOutput } from "./commands/DeleteFieldLevelEncryptionConfigCommand";
|
|
39
46
|
import { DeleteFieldLevelEncryptionProfileCommandInput, DeleteFieldLevelEncryptionProfileCommandOutput } from "./commands/DeleteFieldLevelEncryptionProfileCommand";
|
|
40
47
|
import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
|
|
@@ -50,23 +57,31 @@ import { DeleteStreamingDistributionCommandInput, DeleteStreamingDistributionCom
|
|
|
50
57
|
import { DeleteVpcOriginCommandInput, DeleteVpcOriginCommandOutput } from "./commands/DeleteVpcOriginCommand";
|
|
51
58
|
import { DescribeFunctionCommandInput, DescribeFunctionCommandOutput } from "./commands/DescribeFunctionCommand";
|
|
52
59
|
import { DescribeKeyValueStoreCommandInput, DescribeKeyValueStoreCommandOutput } from "./commands/DescribeKeyValueStoreCommand";
|
|
60
|
+
import { DisassociateDistributionTenantWebACLCommandInput, DisassociateDistributionTenantWebACLCommandOutput } from "./commands/DisassociateDistributionTenantWebACLCommand";
|
|
61
|
+
import { DisassociateDistributionWebACLCommandInput, DisassociateDistributionWebACLCommandOutput } from "./commands/DisassociateDistributionWebACLCommand";
|
|
53
62
|
import { GetAnycastIpListCommandInput, GetAnycastIpListCommandOutput } from "./commands/GetAnycastIpListCommand";
|
|
54
63
|
import { GetCachePolicyCommandInput, GetCachePolicyCommandOutput } from "./commands/GetCachePolicyCommand";
|
|
55
64
|
import { GetCachePolicyConfigCommandInput, GetCachePolicyConfigCommandOutput } from "./commands/GetCachePolicyConfigCommand";
|
|
56
65
|
import { GetCloudFrontOriginAccessIdentityCommandInput, GetCloudFrontOriginAccessIdentityCommandOutput } from "./commands/GetCloudFrontOriginAccessIdentityCommand";
|
|
57
66
|
import { GetCloudFrontOriginAccessIdentityConfigCommandInput, GetCloudFrontOriginAccessIdentityConfigCommandOutput } from "./commands/GetCloudFrontOriginAccessIdentityConfigCommand";
|
|
67
|
+
import { GetConnectionGroupByRoutingEndpointCommandInput, GetConnectionGroupByRoutingEndpointCommandOutput } from "./commands/GetConnectionGroupByRoutingEndpointCommand";
|
|
68
|
+
import { GetConnectionGroupCommandInput, GetConnectionGroupCommandOutput } from "./commands/GetConnectionGroupCommand";
|
|
58
69
|
import { GetContinuousDeploymentPolicyCommandInput, GetContinuousDeploymentPolicyCommandOutput } from "./commands/GetContinuousDeploymentPolicyCommand";
|
|
59
70
|
import { GetContinuousDeploymentPolicyConfigCommandInput, GetContinuousDeploymentPolicyConfigCommandOutput } from "./commands/GetContinuousDeploymentPolicyConfigCommand";
|
|
60
71
|
import { GetDistributionCommandInput, GetDistributionCommandOutput } from "./commands/GetDistributionCommand";
|
|
61
72
|
import { GetDistributionConfigCommandInput, GetDistributionConfigCommandOutput } from "./commands/GetDistributionConfigCommand";
|
|
73
|
+
import { GetDistributionTenantByDomainCommandInput, GetDistributionTenantByDomainCommandOutput } from "./commands/GetDistributionTenantByDomainCommand";
|
|
74
|
+
import { GetDistributionTenantCommandInput, GetDistributionTenantCommandOutput } from "./commands/GetDistributionTenantCommand";
|
|
62
75
|
import { GetFieldLevelEncryptionCommandInput, GetFieldLevelEncryptionCommandOutput } from "./commands/GetFieldLevelEncryptionCommand";
|
|
63
76
|
import { GetFieldLevelEncryptionConfigCommandInput, GetFieldLevelEncryptionConfigCommandOutput } from "./commands/GetFieldLevelEncryptionConfigCommand";
|
|
64
77
|
import { GetFieldLevelEncryptionProfileCommandInput, GetFieldLevelEncryptionProfileCommandOutput } from "./commands/GetFieldLevelEncryptionProfileCommand";
|
|
65
78
|
import { GetFieldLevelEncryptionProfileConfigCommandInput, GetFieldLevelEncryptionProfileConfigCommandOutput } from "./commands/GetFieldLevelEncryptionProfileConfigCommand";
|
|
66
79
|
import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
|
|
67
80
|
import { GetInvalidationCommandInput, GetInvalidationCommandOutput } from "./commands/GetInvalidationCommand";
|
|
81
|
+
import { GetInvalidationForDistributionTenantCommandInput, GetInvalidationForDistributionTenantCommandOutput } from "./commands/GetInvalidationForDistributionTenantCommand";
|
|
68
82
|
import { GetKeyGroupCommandInput, GetKeyGroupCommandOutput } from "./commands/GetKeyGroupCommand";
|
|
69
83
|
import { GetKeyGroupConfigCommandInput, GetKeyGroupConfigCommandOutput } from "./commands/GetKeyGroupConfigCommand";
|
|
84
|
+
import { GetManagedCertificateDetailsCommandInput, GetManagedCertificateDetailsCommandOutput } from "./commands/GetManagedCertificateDetailsCommand";
|
|
70
85
|
import { GetMonitoringSubscriptionCommandInput, GetMonitoringSubscriptionCommandOutput } from "./commands/GetMonitoringSubscriptionCommand";
|
|
71
86
|
import { GetOriginAccessControlCommandInput, GetOriginAccessControlCommandOutput } from "./commands/GetOriginAccessControlCommand";
|
|
72
87
|
import { GetOriginAccessControlConfigCommandInput, GetOriginAccessControlConfigCommandOutput } from "./commands/GetOriginAccessControlConfigCommand";
|
|
@@ -84,9 +99,11 @@ import { ListAnycastIpListsCommandInput, ListAnycastIpListsCommandOutput } from
|
|
|
84
99
|
import { ListCachePoliciesCommandInput, ListCachePoliciesCommandOutput } from "./commands/ListCachePoliciesCommand";
|
|
85
100
|
import { ListCloudFrontOriginAccessIdentitiesCommandInput, ListCloudFrontOriginAccessIdentitiesCommandOutput } from "./commands/ListCloudFrontOriginAccessIdentitiesCommand";
|
|
86
101
|
import { ListConflictingAliasesCommandInput, ListConflictingAliasesCommandOutput } from "./commands/ListConflictingAliasesCommand";
|
|
102
|
+
import { ListConnectionGroupsCommandInput, ListConnectionGroupsCommandOutput } from "./commands/ListConnectionGroupsCommand";
|
|
87
103
|
import { ListContinuousDeploymentPoliciesCommandInput, ListContinuousDeploymentPoliciesCommandOutput } from "./commands/ListContinuousDeploymentPoliciesCommand";
|
|
88
104
|
import { ListDistributionsByAnycastIpListIdCommandInput, ListDistributionsByAnycastIpListIdCommandOutput } from "./commands/ListDistributionsByAnycastIpListIdCommand";
|
|
89
105
|
import { ListDistributionsByCachePolicyIdCommandInput, ListDistributionsByCachePolicyIdCommandOutput } from "./commands/ListDistributionsByCachePolicyIdCommand";
|
|
106
|
+
import { ListDistributionsByConnectionModeCommandInput, ListDistributionsByConnectionModeCommandOutput } from "./commands/ListDistributionsByConnectionModeCommand";
|
|
90
107
|
import { ListDistributionsByKeyGroupCommandInput, ListDistributionsByKeyGroupCommandOutput } from "./commands/ListDistributionsByKeyGroupCommand";
|
|
91
108
|
import { ListDistributionsByOriginRequestPolicyIdCommandInput, ListDistributionsByOriginRequestPolicyIdCommandOutput } from "./commands/ListDistributionsByOriginRequestPolicyIdCommand";
|
|
92
109
|
import { ListDistributionsByRealtimeLogConfigCommandInput, ListDistributionsByRealtimeLogConfigCommandOutput } from "./commands/ListDistributionsByRealtimeLogConfigCommand";
|
|
@@ -94,10 +111,14 @@ import { ListDistributionsByResponseHeadersPolicyIdCommandInput, ListDistributio
|
|
|
94
111
|
import { ListDistributionsByVpcOriginIdCommandInput, ListDistributionsByVpcOriginIdCommandOutput } from "./commands/ListDistributionsByVpcOriginIdCommand";
|
|
95
112
|
import { ListDistributionsByWebACLIdCommandInput, ListDistributionsByWebACLIdCommandOutput } from "./commands/ListDistributionsByWebACLIdCommand";
|
|
96
113
|
import { ListDistributionsCommandInput, ListDistributionsCommandOutput } from "./commands/ListDistributionsCommand";
|
|
114
|
+
import { ListDistributionTenantsByCustomizationCommandInput, ListDistributionTenantsByCustomizationCommandOutput } from "./commands/ListDistributionTenantsByCustomizationCommand";
|
|
115
|
+
import { ListDistributionTenantsCommandInput, ListDistributionTenantsCommandOutput } from "./commands/ListDistributionTenantsCommand";
|
|
116
|
+
import { ListDomainConflictsCommandInput, ListDomainConflictsCommandOutput } from "./commands/ListDomainConflictsCommand";
|
|
97
117
|
import { ListFieldLevelEncryptionConfigsCommandInput, ListFieldLevelEncryptionConfigsCommandOutput } from "./commands/ListFieldLevelEncryptionConfigsCommand";
|
|
98
118
|
import { ListFieldLevelEncryptionProfilesCommandInput, ListFieldLevelEncryptionProfilesCommandOutput } from "./commands/ListFieldLevelEncryptionProfilesCommand";
|
|
99
119
|
import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
|
|
100
120
|
import { ListInvalidationsCommandInput, ListInvalidationsCommandOutput } from "./commands/ListInvalidationsCommand";
|
|
121
|
+
import { ListInvalidationsForDistributionTenantCommandInput, ListInvalidationsForDistributionTenantCommandOutput } from "./commands/ListInvalidationsForDistributionTenantCommand";
|
|
101
122
|
import { ListKeyGroupsCommandInput, ListKeyGroupsCommandOutput } from "./commands/ListKeyGroupsCommand";
|
|
102
123
|
import { ListKeyValueStoresCommandInput, ListKeyValueStoresCommandOutput } from "./commands/ListKeyValueStoresCommand";
|
|
103
124
|
import { ListOriginAccessControlsCommandInput, ListOriginAccessControlsCommandOutput } from "./commands/ListOriginAccessControlsCommand";
|
|
@@ -114,9 +135,12 @@ import { TestFunctionCommandInput, TestFunctionCommandOutput } from "./commands/
|
|
|
114
135
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
115
136
|
import { UpdateCachePolicyCommandInput, UpdateCachePolicyCommandOutput } from "./commands/UpdateCachePolicyCommand";
|
|
116
137
|
import { UpdateCloudFrontOriginAccessIdentityCommandInput, UpdateCloudFrontOriginAccessIdentityCommandOutput } from "./commands/UpdateCloudFrontOriginAccessIdentityCommand";
|
|
138
|
+
import { UpdateConnectionGroupCommandInput, UpdateConnectionGroupCommandOutput } from "./commands/UpdateConnectionGroupCommand";
|
|
117
139
|
import { UpdateContinuousDeploymentPolicyCommandInput, UpdateContinuousDeploymentPolicyCommandOutput } from "./commands/UpdateContinuousDeploymentPolicyCommand";
|
|
118
140
|
import { UpdateDistributionCommandInput, UpdateDistributionCommandOutput } from "./commands/UpdateDistributionCommand";
|
|
141
|
+
import { UpdateDistributionTenantCommandInput, UpdateDistributionTenantCommandOutput } from "./commands/UpdateDistributionTenantCommand";
|
|
119
142
|
import { UpdateDistributionWithStagingConfigCommandInput, UpdateDistributionWithStagingConfigCommandOutput } from "./commands/UpdateDistributionWithStagingConfigCommand";
|
|
143
|
+
import { UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput } from "./commands/UpdateDomainAssociationCommand";
|
|
120
144
|
import { UpdateFieldLevelEncryptionConfigCommandInput, UpdateFieldLevelEncryptionConfigCommandOutput } from "./commands/UpdateFieldLevelEncryptionConfigCommand";
|
|
121
145
|
import { UpdateFieldLevelEncryptionProfileCommandInput, UpdateFieldLevelEncryptionProfileCommandOutput } from "./commands/UpdateFieldLevelEncryptionProfileCommand";
|
|
122
146
|
import { UpdateFunctionCommandInput, UpdateFunctionCommandOutput } from "./commands/UpdateFunctionCommand";
|
|
@@ -129,17 +153,18 @@ import { UpdateRealtimeLogConfigCommandInput, UpdateRealtimeLogConfigCommandOutp
|
|
|
129
153
|
import { UpdateResponseHeadersPolicyCommandInput, UpdateResponseHeadersPolicyCommandOutput } from "./commands/UpdateResponseHeadersPolicyCommand";
|
|
130
154
|
import { UpdateStreamingDistributionCommandInput, UpdateStreamingDistributionCommandOutput } from "./commands/UpdateStreamingDistributionCommand";
|
|
131
155
|
import { UpdateVpcOriginCommandInput, UpdateVpcOriginCommandOutput } from "./commands/UpdateVpcOriginCommand";
|
|
156
|
+
import { VerifyDnsConfigurationCommandInput, VerifyDnsConfigurationCommandOutput } from "./commands/VerifyDnsConfigurationCommand";
|
|
132
157
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
133
158
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
134
159
|
export { __Client };
|
|
135
160
|
/**
|
|
136
161
|
* @public
|
|
137
162
|
*/
|
|
138
|
-
export type ServiceInputTypes = AssociateAliasCommandInput | CopyDistributionCommandInput | CreateAnycastIpListCommandInput | CreateCachePolicyCommandInput | CreateCloudFrontOriginAccessIdentityCommandInput | CreateContinuousDeploymentPolicyCommandInput | CreateDistributionCommandInput | CreateDistributionWithTagsCommandInput | CreateFieldLevelEncryptionConfigCommandInput | CreateFieldLevelEncryptionProfileCommandInput | CreateFunctionCommandInput | CreateInvalidationCommandInput | CreateKeyGroupCommandInput | CreateKeyValueStoreCommandInput | CreateMonitoringSubscriptionCommandInput | CreateOriginAccessControlCommandInput | CreateOriginRequestPolicyCommandInput | CreatePublicKeyCommandInput | CreateRealtimeLogConfigCommandInput | CreateResponseHeadersPolicyCommandInput | CreateStreamingDistributionCommandInput | CreateStreamingDistributionWithTagsCommandInput | CreateVpcOriginCommandInput | DeleteAnycastIpListCommandInput | DeleteCachePolicyCommandInput | DeleteCloudFrontOriginAccessIdentityCommandInput | DeleteContinuousDeploymentPolicyCommandInput | DeleteDistributionCommandInput | DeleteFieldLevelEncryptionConfigCommandInput | DeleteFieldLevelEncryptionProfileCommandInput | DeleteFunctionCommandInput | DeleteKeyGroupCommandInput | DeleteKeyValueStoreCommandInput | DeleteMonitoringSubscriptionCommandInput | DeleteOriginAccessControlCommandInput | DeleteOriginRequestPolicyCommandInput | DeletePublicKeyCommandInput | DeleteRealtimeLogConfigCommandInput | DeleteResponseHeadersPolicyCommandInput | DeleteStreamingDistributionCommandInput | DeleteVpcOriginCommandInput | DescribeFunctionCommandInput | DescribeKeyValueStoreCommandInput | GetAnycastIpListCommandInput | GetCachePolicyCommandInput | GetCachePolicyConfigCommandInput | GetCloudFrontOriginAccessIdentityCommandInput | GetCloudFrontOriginAccessIdentityConfigCommandInput | GetContinuousDeploymentPolicyCommandInput | GetContinuousDeploymentPolicyConfigCommandInput | GetDistributionCommandInput | GetDistributionConfigCommandInput | GetFieldLevelEncryptionCommandInput | GetFieldLevelEncryptionConfigCommandInput | GetFieldLevelEncryptionProfileCommandInput | GetFieldLevelEncryptionProfileConfigCommandInput | GetFunctionCommandInput | GetInvalidationCommandInput | GetKeyGroupCommandInput | GetKeyGroupConfigCommandInput | GetMonitoringSubscriptionCommandInput | GetOriginAccessControlCommandInput | GetOriginAccessControlConfigCommandInput | GetOriginRequestPolicyCommandInput | GetOriginRequestPolicyConfigCommandInput | GetPublicKeyCommandInput | GetPublicKeyConfigCommandInput | GetRealtimeLogConfigCommandInput | GetResponseHeadersPolicyCommandInput | GetResponseHeadersPolicyConfigCommandInput | GetStreamingDistributionCommandInput | GetStreamingDistributionConfigCommandInput | GetVpcOriginCommandInput | ListAnycastIpListsCommandInput | ListCachePoliciesCommandInput | ListCloudFrontOriginAccessIdentitiesCommandInput | ListConflictingAliasesCommandInput | ListContinuousDeploymentPoliciesCommandInput | ListDistributionsByAnycastIpListIdCommandInput | ListDistributionsByCachePolicyIdCommandInput | ListDistributionsByKeyGroupCommandInput | ListDistributionsByOriginRequestPolicyIdCommandInput | ListDistributionsByRealtimeLogConfigCommandInput | ListDistributionsByResponseHeadersPolicyIdCommandInput | ListDistributionsByVpcOriginIdCommandInput | ListDistributionsByWebACLIdCommandInput | ListDistributionsCommandInput | ListFieldLevelEncryptionConfigsCommandInput | ListFieldLevelEncryptionProfilesCommandInput | ListFunctionsCommandInput | ListInvalidationsCommandInput | ListKeyGroupsCommandInput | ListKeyValueStoresCommandInput | ListOriginAccessControlsCommandInput | ListOriginRequestPoliciesCommandInput | ListPublicKeysCommandInput | ListRealtimeLogConfigsCommandInput | ListResponseHeadersPoliciesCommandInput | ListStreamingDistributionsCommandInput | ListTagsForResourceCommandInput | ListVpcOriginsCommandInput | PublishFunctionCommandInput | TagResourceCommandInput | TestFunctionCommandInput | UntagResourceCommandInput | UpdateCachePolicyCommandInput | UpdateCloudFrontOriginAccessIdentityCommandInput | UpdateContinuousDeploymentPolicyCommandInput | UpdateDistributionCommandInput | UpdateDistributionWithStagingConfigCommandInput | UpdateFieldLevelEncryptionConfigCommandInput | UpdateFieldLevelEncryptionProfileCommandInput | UpdateFunctionCommandInput | UpdateKeyGroupCommandInput | UpdateKeyValueStoreCommandInput | UpdateOriginAccessControlCommandInput | UpdateOriginRequestPolicyCommandInput | UpdatePublicKeyCommandInput | UpdateRealtimeLogConfigCommandInput | UpdateResponseHeadersPolicyCommandInput | UpdateStreamingDistributionCommandInput | UpdateVpcOriginCommandInput;
|
|
163
|
+
export type ServiceInputTypes = AssociateAliasCommandInput | AssociateDistributionTenantWebACLCommandInput | AssociateDistributionWebACLCommandInput | CopyDistributionCommandInput | CreateAnycastIpListCommandInput | CreateCachePolicyCommandInput | CreateCloudFrontOriginAccessIdentityCommandInput | CreateConnectionGroupCommandInput | CreateContinuousDeploymentPolicyCommandInput | CreateDistributionCommandInput | CreateDistributionTenantCommandInput | CreateDistributionWithTagsCommandInput | CreateFieldLevelEncryptionConfigCommandInput | CreateFieldLevelEncryptionProfileCommandInput | CreateFunctionCommandInput | CreateInvalidationCommandInput | CreateInvalidationForDistributionTenantCommandInput | CreateKeyGroupCommandInput | CreateKeyValueStoreCommandInput | CreateMonitoringSubscriptionCommandInput | CreateOriginAccessControlCommandInput | CreateOriginRequestPolicyCommandInput | CreatePublicKeyCommandInput | CreateRealtimeLogConfigCommandInput | CreateResponseHeadersPolicyCommandInput | CreateStreamingDistributionCommandInput | CreateStreamingDistributionWithTagsCommandInput | CreateVpcOriginCommandInput | DeleteAnycastIpListCommandInput | DeleteCachePolicyCommandInput | DeleteCloudFrontOriginAccessIdentityCommandInput | DeleteConnectionGroupCommandInput | DeleteContinuousDeploymentPolicyCommandInput | DeleteDistributionCommandInput | DeleteDistributionTenantCommandInput | DeleteFieldLevelEncryptionConfigCommandInput | DeleteFieldLevelEncryptionProfileCommandInput | DeleteFunctionCommandInput | DeleteKeyGroupCommandInput | DeleteKeyValueStoreCommandInput | DeleteMonitoringSubscriptionCommandInput | DeleteOriginAccessControlCommandInput | DeleteOriginRequestPolicyCommandInput | DeletePublicKeyCommandInput | DeleteRealtimeLogConfigCommandInput | DeleteResponseHeadersPolicyCommandInput | DeleteStreamingDistributionCommandInput | DeleteVpcOriginCommandInput | DescribeFunctionCommandInput | DescribeKeyValueStoreCommandInput | DisassociateDistributionTenantWebACLCommandInput | DisassociateDistributionWebACLCommandInput | GetAnycastIpListCommandInput | GetCachePolicyCommandInput | GetCachePolicyConfigCommandInput | GetCloudFrontOriginAccessIdentityCommandInput | GetCloudFrontOriginAccessIdentityConfigCommandInput | GetConnectionGroupByRoutingEndpointCommandInput | GetConnectionGroupCommandInput | GetContinuousDeploymentPolicyCommandInput | GetContinuousDeploymentPolicyConfigCommandInput | GetDistributionCommandInput | GetDistributionConfigCommandInput | GetDistributionTenantByDomainCommandInput | GetDistributionTenantCommandInput | GetFieldLevelEncryptionCommandInput | GetFieldLevelEncryptionConfigCommandInput | GetFieldLevelEncryptionProfileCommandInput | GetFieldLevelEncryptionProfileConfigCommandInput | GetFunctionCommandInput | GetInvalidationCommandInput | GetInvalidationForDistributionTenantCommandInput | GetKeyGroupCommandInput | GetKeyGroupConfigCommandInput | GetManagedCertificateDetailsCommandInput | GetMonitoringSubscriptionCommandInput | GetOriginAccessControlCommandInput | GetOriginAccessControlConfigCommandInput | GetOriginRequestPolicyCommandInput | GetOriginRequestPolicyConfigCommandInput | GetPublicKeyCommandInput | GetPublicKeyConfigCommandInput | GetRealtimeLogConfigCommandInput | GetResponseHeadersPolicyCommandInput | GetResponseHeadersPolicyConfigCommandInput | GetStreamingDistributionCommandInput | GetStreamingDistributionConfigCommandInput | GetVpcOriginCommandInput | ListAnycastIpListsCommandInput | ListCachePoliciesCommandInput | ListCloudFrontOriginAccessIdentitiesCommandInput | ListConflictingAliasesCommandInput | ListConnectionGroupsCommandInput | ListContinuousDeploymentPoliciesCommandInput | ListDistributionTenantsByCustomizationCommandInput | ListDistributionTenantsCommandInput | ListDistributionsByAnycastIpListIdCommandInput | ListDistributionsByCachePolicyIdCommandInput | ListDistributionsByConnectionModeCommandInput | ListDistributionsByKeyGroupCommandInput | ListDistributionsByOriginRequestPolicyIdCommandInput | ListDistributionsByRealtimeLogConfigCommandInput | ListDistributionsByResponseHeadersPolicyIdCommandInput | ListDistributionsByVpcOriginIdCommandInput | ListDistributionsByWebACLIdCommandInput | ListDistributionsCommandInput | ListDomainConflictsCommandInput | ListFieldLevelEncryptionConfigsCommandInput | ListFieldLevelEncryptionProfilesCommandInput | ListFunctionsCommandInput | ListInvalidationsCommandInput | ListInvalidationsForDistributionTenantCommandInput | ListKeyGroupsCommandInput | ListKeyValueStoresCommandInput | ListOriginAccessControlsCommandInput | ListOriginRequestPoliciesCommandInput | ListPublicKeysCommandInput | ListRealtimeLogConfigsCommandInput | ListResponseHeadersPoliciesCommandInput | ListStreamingDistributionsCommandInput | ListTagsForResourceCommandInput | ListVpcOriginsCommandInput | PublishFunctionCommandInput | TagResourceCommandInput | TestFunctionCommandInput | UntagResourceCommandInput | UpdateCachePolicyCommandInput | UpdateCloudFrontOriginAccessIdentityCommandInput | UpdateConnectionGroupCommandInput | UpdateContinuousDeploymentPolicyCommandInput | UpdateDistributionCommandInput | UpdateDistributionTenantCommandInput | UpdateDistributionWithStagingConfigCommandInput | UpdateDomainAssociationCommandInput | UpdateFieldLevelEncryptionConfigCommandInput | UpdateFieldLevelEncryptionProfileCommandInput | UpdateFunctionCommandInput | UpdateKeyGroupCommandInput | UpdateKeyValueStoreCommandInput | UpdateOriginAccessControlCommandInput | UpdateOriginRequestPolicyCommandInput | UpdatePublicKeyCommandInput | UpdateRealtimeLogConfigCommandInput | UpdateResponseHeadersPolicyCommandInput | UpdateStreamingDistributionCommandInput | UpdateVpcOriginCommandInput | VerifyDnsConfigurationCommandInput;
|
|
139
164
|
/**
|
|
140
165
|
* @public
|
|
141
166
|
*/
|
|
142
|
-
export type ServiceOutputTypes = AssociateAliasCommandOutput | CopyDistributionCommandOutput | CreateAnycastIpListCommandOutput | CreateCachePolicyCommandOutput | CreateCloudFrontOriginAccessIdentityCommandOutput | CreateContinuousDeploymentPolicyCommandOutput | CreateDistributionCommandOutput | CreateDistributionWithTagsCommandOutput | CreateFieldLevelEncryptionConfigCommandOutput | CreateFieldLevelEncryptionProfileCommandOutput | CreateFunctionCommandOutput | CreateInvalidationCommandOutput | CreateKeyGroupCommandOutput | CreateKeyValueStoreCommandOutput | CreateMonitoringSubscriptionCommandOutput | CreateOriginAccessControlCommandOutput | CreateOriginRequestPolicyCommandOutput | CreatePublicKeyCommandOutput | CreateRealtimeLogConfigCommandOutput | CreateResponseHeadersPolicyCommandOutput | CreateStreamingDistributionCommandOutput | CreateStreamingDistributionWithTagsCommandOutput | CreateVpcOriginCommandOutput | DeleteAnycastIpListCommandOutput | DeleteCachePolicyCommandOutput | DeleteCloudFrontOriginAccessIdentityCommandOutput | DeleteContinuousDeploymentPolicyCommandOutput | DeleteDistributionCommandOutput | DeleteFieldLevelEncryptionConfigCommandOutput | DeleteFieldLevelEncryptionProfileCommandOutput | DeleteFunctionCommandOutput | DeleteKeyGroupCommandOutput | DeleteKeyValueStoreCommandOutput | DeleteMonitoringSubscriptionCommandOutput | DeleteOriginAccessControlCommandOutput | DeleteOriginRequestPolicyCommandOutput | DeletePublicKeyCommandOutput | DeleteRealtimeLogConfigCommandOutput | DeleteResponseHeadersPolicyCommandOutput | DeleteStreamingDistributionCommandOutput | DeleteVpcOriginCommandOutput | DescribeFunctionCommandOutput | DescribeKeyValueStoreCommandOutput | GetAnycastIpListCommandOutput | GetCachePolicyCommandOutput | GetCachePolicyConfigCommandOutput | GetCloudFrontOriginAccessIdentityCommandOutput | GetCloudFrontOriginAccessIdentityConfigCommandOutput | GetContinuousDeploymentPolicyCommandOutput | GetContinuousDeploymentPolicyConfigCommandOutput | GetDistributionCommandOutput | GetDistributionConfigCommandOutput | GetFieldLevelEncryptionCommandOutput | GetFieldLevelEncryptionConfigCommandOutput | GetFieldLevelEncryptionProfileCommandOutput | GetFieldLevelEncryptionProfileConfigCommandOutput | GetFunctionCommandOutput | GetInvalidationCommandOutput | GetKeyGroupCommandOutput | GetKeyGroupConfigCommandOutput | GetMonitoringSubscriptionCommandOutput | GetOriginAccessControlCommandOutput | GetOriginAccessControlConfigCommandOutput | GetOriginRequestPolicyCommandOutput | GetOriginRequestPolicyConfigCommandOutput | GetPublicKeyCommandOutput | GetPublicKeyConfigCommandOutput | GetRealtimeLogConfigCommandOutput | GetResponseHeadersPolicyCommandOutput | GetResponseHeadersPolicyConfigCommandOutput | GetStreamingDistributionCommandOutput | GetStreamingDistributionConfigCommandOutput | GetVpcOriginCommandOutput | ListAnycastIpListsCommandOutput | ListCachePoliciesCommandOutput | ListCloudFrontOriginAccessIdentitiesCommandOutput | ListConflictingAliasesCommandOutput | ListContinuousDeploymentPoliciesCommandOutput | ListDistributionsByAnycastIpListIdCommandOutput | ListDistributionsByCachePolicyIdCommandOutput | ListDistributionsByKeyGroupCommandOutput | ListDistributionsByOriginRequestPolicyIdCommandOutput | ListDistributionsByRealtimeLogConfigCommandOutput | ListDistributionsByResponseHeadersPolicyIdCommandOutput | ListDistributionsByVpcOriginIdCommandOutput | ListDistributionsByWebACLIdCommandOutput | ListDistributionsCommandOutput | ListFieldLevelEncryptionConfigsCommandOutput | ListFieldLevelEncryptionProfilesCommandOutput | ListFunctionsCommandOutput | ListInvalidationsCommandOutput | ListKeyGroupsCommandOutput | ListKeyValueStoresCommandOutput | ListOriginAccessControlsCommandOutput | ListOriginRequestPoliciesCommandOutput | ListPublicKeysCommandOutput | ListRealtimeLogConfigsCommandOutput | ListResponseHeadersPoliciesCommandOutput | ListStreamingDistributionsCommandOutput | ListTagsForResourceCommandOutput | ListVpcOriginsCommandOutput | PublishFunctionCommandOutput | TagResourceCommandOutput | TestFunctionCommandOutput | UntagResourceCommandOutput | UpdateCachePolicyCommandOutput | UpdateCloudFrontOriginAccessIdentityCommandOutput | UpdateContinuousDeploymentPolicyCommandOutput | UpdateDistributionCommandOutput | UpdateDistributionWithStagingConfigCommandOutput | UpdateFieldLevelEncryptionConfigCommandOutput | UpdateFieldLevelEncryptionProfileCommandOutput | UpdateFunctionCommandOutput | UpdateKeyGroupCommandOutput | UpdateKeyValueStoreCommandOutput | UpdateOriginAccessControlCommandOutput | UpdateOriginRequestPolicyCommandOutput | UpdatePublicKeyCommandOutput | UpdateRealtimeLogConfigCommandOutput | UpdateResponseHeadersPolicyCommandOutput | UpdateStreamingDistributionCommandOutput | UpdateVpcOriginCommandOutput;
|
|
167
|
+
export type ServiceOutputTypes = AssociateAliasCommandOutput | AssociateDistributionTenantWebACLCommandOutput | AssociateDistributionWebACLCommandOutput | CopyDistributionCommandOutput | CreateAnycastIpListCommandOutput | CreateCachePolicyCommandOutput | CreateCloudFrontOriginAccessIdentityCommandOutput | CreateConnectionGroupCommandOutput | CreateContinuousDeploymentPolicyCommandOutput | CreateDistributionCommandOutput | CreateDistributionTenantCommandOutput | CreateDistributionWithTagsCommandOutput | CreateFieldLevelEncryptionConfigCommandOutput | CreateFieldLevelEncryptionProfileCommandOutput | CreateFunctionCommandOutput | CreateInvalidationCommandOutput | CreateInvalidationForDistributionTenantCommandOutput | CreateKeyGroupCommandOutput | CreateKeyValueStoreCommandOutput | CreateMonitoringSubscriptionCommandOutput | CreateOriginAccessControlCommandOutput | CreateOriginRequestPolicyCommandOutput | CreatePublicKeyCommandOutput | CreateRealtimeLogConfigCommandOutput | CreateResponseHeadersPolicyCommandOutput | CreateStreamingDistributionCommandOutput | CreateStreamingDistributionWithTagsCommandOutput | CreateVpcOriginCommandOutput | DeleteAnycastIpListCommandOutput | DeleteCachePolicyCommandOutput | DeleteCloudFrontOriginAccessIdentityCommandOutput | DeleteConnectionGroupCommandOutput | DeleteContinuousDeploymentPolicyCommandOutput | DeleteDistributionCommandOutput | DeleteDistributionTenantCommandOutput | DeleteFieldLevelEncryptionConfigCommandOutput | DeleteFieldLevelEncryptionProfileCommandOutput | DeleteFunctionCommandOutput | DeleteKeyGroupCommandOutput | DeleteKeyValueStoreCommandOutput | DeleteMonitoringSubscriptionCommandOutput | DeleteOriginAccessControlCommandOutput | DeleteOriginRequestPolicyCommandOutput | DeletePublicKeyCommandOutput | DeleteRealtimeLogConfigCommandOutput | DeleteResponseHeadersPolicyCommandOutput | DeleteStreamingDistributionCommandOutput | DeleteVpcOriginCommandOutput | DescribeFunctionCommandOutput | DescribeKeyValueStoreCommandOutput | DisassociateDistributionTenantWebACLCommandOutput | DisassociateDistributionWebACLCommandOutput | GetAnycastIpListCommandOutput | GetCachePolicyCommandOutput | GetCachePolicyConfigCommandOutput | GetCloudFrontOriginAccessIdentityCommandOutput | GetCloudFrontOriginAccessIdentityConfigCommandOutput | GetConnectionGroupByRoutingEndpointCommandOutput | GetConnectionGroupCommandOutput | GetContinuousDeploymentPolicyCommandOutput | GetContinuousDeploymentPolicyConfigCommandOutput | GetDistributionCommandOutput | GetDistributionConfigCommandOutput | GetDistributionTenantByDomainCommandOutput | GetDistributionTenantCommandOutput | GetFieldLevelEncryptionCommandOutput | GetFieldLevelEncryptionConfigCommandOutput | GetFieldLevelEncryptionProfileCommandOutput | GetFieldLevelEncryptionProfileConfigCommandOutput | GetFunctionCommandOutput | GetInvalidationCommandOutput | GetInvalidationForDistributionTenantCommandOutput | GetKeyGroupCommandOutput | GetKeyGroupConfigCommandOutput | GetManagedCertificateDetailsCommandOutput | GetMonitoringSubscriptionCommandOutput | GetOriginAccessControlCommandOutput | GetOriginAccessControlConfigCommandOutput | GetOriginRequestPolicyCommandOutput | GetOriginRequestPolicyConfigCommandOutput | GetPublicKeyCommandOutput | GetPublicKeyConfigCommandOutput | GetRealtimeLogConfigCommandOutput | GetResponseHeadersPolicyCommandOutput | GetResponseHeadersPolicyConfigCommandOutput | GetStreamingDistributionCommandOutput | GetStreamingDistributionConfigCommandOutput | GetVpcOriginCommandOutput | ListAnycastIpListsCommandOutput | ListCachePoliciesCommandOutput | ListCloudFrontOriginAccessIdentitiesCommandOutput | ListConflictingAliasesCommandOutput | ListConnectionGroupsCommandOutput | ListContinuousDeploymentPoliciesCommandOutput | ListDistributionTenantsByCustomizationCommandOutput | ListDistributionTenantsCommandOutput | ListDistributionsByAnycastIpListIdCommandOutput | ListDistributionsByCachePolicyIdCommandOutput | ListDistributionsByConnectionModeCommandOutput | ListDistributionsByKeyGroupCommandOutput | ListDistributionsByOriginRequestPolicyIdCommandOutput | ListDistributionsByRealtimeLogConfigCommandOutput | ListDistributionsByResponseHeadersPolicyIdCommandOutput | ListDistributionsByVpcOriginIdCommandOutput | ListDistributionsByWebACLIdCommandOutput | ListDistributionsCommandOutput | ListDomainConflictsCommandOutput | ListFieldLevelEncryptionConfigsCommandOutput | ListFieldLevelEncryptionProfilesCommandOutput | ListFunctionsCommandOutput | ListInvalidationsCommandOutput | ListInvalidationsForDistributionTenantCommandOutput | ListKeyGroupsCommandOutput | ListKeyValueStoresCommandOutput | ListOriginAccessControlsCommandOutput | ListOriginRequestPoliciesCommandOutput | ListPublicKeysCommandOutput | ListRealtimeLogConfigsCommandOutput | ListResponseHeadersPoliciesCommandOutput | ListStreamingDistributionsCommandOutput | ListTagsForResourceCommandOutput | ListVpcOriginsCommandOutput | PublishFunctionCommandOutput | TagResourceCommandOutput | TestFunctionCommandOutput | UntagResourceCommandOutput | UpdateCachePolicyCommandOutput | UpdateCloudFrontOriginAccessIdentityCommandOutput | UpdateConnectionGroupCommandOutput | UpdateContinuousDeploymentPolicyCommandOutput | UpdateDistributionCommandOutput | UpdateDistributionTenantCommandOutput | UpdateDistributionWithStagingConfigCommandOutput | UpdateDomainAssociationCommandOutput | UpdateFieldLevelEncryptionConfigCommandOutput | UpdateFieldLevelEncryptionProfileCommandOutput | UpdateFunctionCommandOutput | UpdateKeyGroupCommandOutput | UpdateKeyValueStoreCommandOutput | UpdateOriginAccessControlCommandOutput | UpdateOriginRequestPolicyCommandOutput | UpdatePublicKeyCommandOutput | UpdateRealtimeLogConfigCommandOutput | UpdateResponseHeadersPolicyCommandOutput | UpdateStreamingDistributionCommandOutput | UpdateVpcOriginCommandOutput | VerifyDnsConfigurationCommandOutput;
|
|
143
168
|
/**
|
|
144
169
|
* @public
|
|
145
170
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
2
|
-
import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
|
|
2
|
+
import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { CloudFrontClientResolvedConfig } from "../CloudFrontClient";
|
|
4
4
|
/**
|
|
5
5
|
* @internal
|
|
@@ -29,6 +29,13 @@ export declare const defaultCloudFrontHttpAuthSchemeProvider: CloudFrontHttpAuth
|
|
|
29
29
|
* @internal
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
|
+
/**
|
|
33
|
+
* A comma-separated list of case-sensitive auth scheme names.
|
|
34
|
+
* An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
|
|
35
|
+
* For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
32
39
|
/**
|
|
33
40
|
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
41
|
* @internal
|
|
@@ -44,6 +51,13 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
|
44
51
|
* @internal
|
|
45
52
|
*/
|
|
46
53
|
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
54
|
+
/**
|
|
55
|
+
* A comma-separated list of case-sensitive auth scheme names.
|
|
56
|
+
* An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
|
|
57
|
+
* For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
47
61
|
/**
|
|
48
62
|
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
63
|
* @internal
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient";
|
|
4
|
+
import { AssociateDistributionTenantWebACLRequest, AssociateDistributionTenantWebACLResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link AssociateDistributionTenantWebACLCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface AssociateDistributionTenantWebACLCommandInput extends AssociateDistributionTenantWebACLRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link AssociateDistributionTenantWebACLCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface AssociateDistributionTenantWebACLCommandOutput extends AssociateDistributionTenantWebACLResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const AssociateDistributionTenantWebACLCommand_base: {
|
|
25
|
+
new (input: AssociateDistributionTenantWebACLCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateDistributionTenantWebACLCommandInput, AssociateDistributionTenantWebACLCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: AssociateDistributionTenantWebACLCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateDistributionTenantWebACLCommandInput, AssociateDistributionTenantWebACLCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Associates the WAF web ACL with a distribution tenant.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CloudFrontClient, AssociateDistributionTenantWebACLCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import
|
|
35
|
+
* // const { CloudFrontClient, AssociateDistributionTenantWebACLCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import
|
|
36
|
+
* const client = new CloudFrontClient(config);
|
|
37
|
+
* const input = { // AssociateDistributionTenantWebACLRequest
|
|
38
|
+
* Id: "STRING_VALUE", // required
|
|
39
|
+
* WebACLArn: "STRING_VALUE", // required
|
|
40
|
+
* IfMatch: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new AssociateDistributionTenantWebACLCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // AssociateDistributionTenantWebACLResult
|
|
45
|
+
* // Id: "STRING_VALUE",
|
|
46
|
+
* // WebACLArn: "STRING_VALUE",
|
|
47
|
+
* // ETag: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param AssociateDistributionTenantWebACLCommandInput - {@link AssociateDistributionTenantWebACLCommandInput}
|
|
53
|
+
* @returns {@link AssociateDistributionTenantWebACLCommandOutput}
|
|
54
|
+
* @see {@link AssociateDistributionTenantWebACLCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link AssociateDistributionTenantWebACLCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDenied} (client fault)
|
|
59
|
+
* <p>Access denied.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link EntityNotFound} (client fault)
|
|
62
|
+
* <p>The entity was not found.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InvalidArgument} (client fault)
|
|
65
|
+
* <p>An argument is invalid.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidIfMatchVersion} (client fault)
|
|
68
|
+
* <p>The <code>If-Match</code> version is missing or not valid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link PreconditionFailed} (client fault)
|
|
71
|
+
* <p>The precondition in one or more of the request fields evaluated to
|
|
72
|
+
* <code>false</code>.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link CloudFrontServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from CloudFront service.</p>
|
|
76
|
+
*
|
|
77
|
+
*
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class AssociateDistributionTenantWebACLCommand extends AssociateDistributionTenantWebACLCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: AssociateDistributionTenantWebACLRequest;
|
|
85
|
+
output: AssociateDistributionTenantWebACLResult;
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: AssociateDistributionTenantWebACLCommandInput;
|
|
89
|
+
output: AssociateDistributionTenantWebACLCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient";
|
|
4
|
+
import { AssociateDistributionWebACLRequest, AssociateDistributionWebACLResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link AssociateDistributionWebACLCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface AssociateDistributionWebACLCommandInput extends AssociateDistributionWebACLRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link AssociateDistributionWebACLCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface AssociateDistributionWebACLCommandOutput extends AssociateDistributionWebACLResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const AssociateDistributionWebACLCommand_base: {
|
|
25
|
+
new (input: AssociateDistributionWebACLCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateDistributionWebACLCommandInput, AssociateDistributionWebACLCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: AssociateDistributionWebACLCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateDistributionWebACLCommandInput, AssociateDistributionWebACLCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Associates the WAF web ACL with a distribution.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CloudFrontClient, AssociateDistributionWebACLCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import
|
|
35
|
+
* // const { CloudFrontClient, AssociateDistributionWebACLCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import
|
|
36
|
+
* const client = new CloudFrontClient(config);
|
|
37
|
+
* const input = { // AssociateDistributionWebACLRequest
|
|
38
|
+
* Id: "STRING_VALUE", // required
|
|
39
|
+
* WebACLArn: "STRING_VALUE", // required
|
|
40
|
+
* IfMatch: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new AssociateDistributionWebACLCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // AssociateDistributionWebACLResult
|
|
45
|
+
* // Id: "STRING_VALUE",
|
|
46
|
+
* // WebACLArn: "STRING_VALUE",
|
|
47
|
+
* // ETag: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param AssociateDistributionWebACLCommandInput - {@link AssociateDistributionWebACLCommandInput}
|
|
53
|
+
* @returns {@link AssociateDistributionWebACLCommandOutput}
|
|
54
|
+
* @see {@link AssociateDistributionWebACLCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link AssociateDistributionWebACLCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDenied} (client fault)
|
|
59
|
+
* <p>Access denied.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link EntityNotFound} (client fault)
|
|
62
|
+
* <p>The entity was not found.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InvalidArgument} (client fault)
|
|
65
|
+
* <p>An argument is invalid.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidIfMatchVersion} (client fault)
|
|
68
|
+
* <p>The <code>If-Match</code> version is missing or not valid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link PreconditionFailed} (client fault)
|
|
71
|
+
* <p>The precondition in one or more of the request fields evaluated to
|
|
72
|
+
* <code>false</code>.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link CloudFrontServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from CloudFront service.</p>
|
|
76
|
+
*
|
|
77
|
+
*
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class AssociateDistributionWebACLCommand extends AssociateDistributionWebACLCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: AssociateDistributionWebACLRequest;
|
|
85
|
+
output: AssociateDistributionWebACLResult;
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: AssociateDistributionWebACLCommandInput;
|
|
89
|
+
output: AssociateDistributionWebACLCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}
|
|
@@ -378,7 +378,7 @@ declare const CopyDistributionCommand_base: {
|
|
|
378
378
|
* // Bucket: "STRING_VALUE",
|
|
379
379
|
* // Prefix: "STRING_VALUE",
|
|
380
380
|
* // },
|
|
381
|
-
* // PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All",
|
|
381
|
+
* // PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All" || "None",
|
|
382
382
|
* // Enabled: true || false, // required
|
|
383
383
|
* // ViewerCertificate: { // ViewerCertificate
|
|
384
384
|
* // CloudFrontDefaultCertificate: true || false,
|
|
@@ -404,6 +404,21 @@ declare const CopyDistributionCommand_base: {
|
|
|
404
404
|
* // ContinuousDeploymentPolicyId: "STRING_VALUE",
|
|
405
405
|
* // Staging: true || false,
|
|
406
406
|
* // AnycastIpListId: "STRING_VALUE",
|
|
407
|
+
* // TenantConfig: { // TenantConfig
|
|
408
|
+
* // ParameterDefinitions: [ // ParameterDefinitions
|
|
409
|
+
* // { // ParameterDefinition
|
|
410
|
+
* // Name: "STRING_VALUE", // required
|
|
411
|
+
* // Definition: { // ParameterDefinitionSchema
|
|
412
|
+
* // StringSchema: { // StringSchemaConfig
|
|
413
|
+
* // Comment: "STRING_VALUE",
|
|
414
|
+
* // DefaultValue: "STRING_VALUE",
|
|
415
|
+
* // Required: true || false, // required
|
|
416
|
+
* // },
|
|
417
|
+
* // },
|
|
418
|
+
* // },
|
|
419
|
+
* // ],
|
|
420
|
+
* // },
|
|
421
|
+
* // ConnectionMode: "direct" || "tenant-only",
|
|
407
422
|
* // },
|
|
408
423
|
* // AliasICPRecordals: [ // AliasICPRecordals
|
|
409
424
|
* // { // AliasICPRecordal
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient";
|
|
4
|
+
import { CreateConnectionGroupRequest, CreateConnectionGroupResult } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateConnectionGroupCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateConnectionGroupCommandInput extends CreateConnectionGroupRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateConnectionGroupCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateConnectionGroupCommandOutput extends CreateConnectionGroupResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateConnectionGroupCommand_base: {
|
|
25
|
+
new (input: CreateConnectionGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectionGroupCommandInput, CreateConnectionGroupCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateConnectionGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConnectionGroupCommandInput, CreateConnectionGroupCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a connection group.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CloudFrontClient, CreateConnectionGroupCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import
|
|
35
|
+
* // const { CloudFrontClient, CreateConnectionGroupCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import
|
|
36
|
+
* const client = new CloudFrontClient(config);
|
|
37
|
+
* const input = { // CreateConnectionGroupRequest
|
|
38
|
+
* Name: "STRING_VALUE", // required
|
|
39
|
+
* Ipv6Enabled: true || false,
|
|
40
|
+
* Tags: { // Tags
|
|
41
|
+
* Items: [ // TagList
|
|
42
|
+
* { // Tag
|
|
43
|
+
* Key: "STRING_VALUE", // required
|
|
44
|
+
* Value: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
48
|
+
* AnycastIpListId: "STRING_VALUE",
|
|
49
|
+
* Enabled: true || false,
|
|
50
|
+
* };
|
|
51
|
+
* const command = new CreateConnectionGroupCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // CreateConnectionGroupResult
|
|
54
|
+
* // ConnectionGroup: { // ConnectionGroup
|
|
55
|
+
* // Id: "STRING_VALUE",
|
|
56
|
+
* // Name: "STRING_VALUE",
|
|
57
|
+
* // Arn: "STRING_VALUE",
|
|
58
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // Tags: { // Tags
|
|
61
|
+
* // Items: [ // TagList
|
|
62
|
+
* // { // Tag
|
|
63
|
+
* // Key: "STRING_VALUE", // required
|
|
64
|
+
* // Value: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // },
|
|
68
|
+
* // Ipv6Enabled: true || false,
|
|
69
|
+
* // RoutingEndpoint: "STRING_VALUE",
|
|
70
|
+
* // AnycastIpListId: "STRING_VALUE",
|
|
71
|
+
* // Status: "STRING_VALUE",
|
|
72
|
+
* // Enabled: true || false,
|
|
73
|
+
* // IsDefault: true || false,
|
|
74
|
+
* // },
|
|
75
|
+
* // ETag: "STRING_VALUE",
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
78
|
+
* ```
|
|
79
|
+
*
|
|
80
|
+
* @param CreateConnectionGroupCommandInput - {@link CreateConnectionGroupCommandInput}
|
|
81
|
+
* @returns {@link CreateConnectionGroupCommandOutput}
|
|
82
|
+
* @see {@link CreateConnectionGroupCommandInput} for command's `input` shape.
|
|
83
|
+
* @see {@link CreateConnectionGroupCommandOutput} for command's `response` shape.
|
|
84
|
+
* @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link AccessDenied} (client fault)
|
|
87
|
+
* <p>Access denied.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link EntityAlreadyExists} (client fault)
|
|
90
|
+
* <p>The entity already exists. You must provide a unique
|
|
91
|
+
* entity.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link EntityLimitExceeded} (client fault)
|
|
94
|
+
* <p>The entity limit has been exceeded.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link EntityNotFound} (client fault)
|
|
97
|
+
* <p>The entity was not found.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link InvalidArgument} (client fault)
|
|
100
|
+
* <p>An argument is invalid.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link InvalidTagging} (client fault)
|
|
103
|
+
* <p>The tagging specified is not valid.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link CloudFrontServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from CloudFront service.</p>
|
|
107
|
+
*
|
|
108
|
+
*
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class CreateConnectionGroupCommand extends CreateConnectionGroupCommand_base {
|
|
112
|
+
/** @internal type navigation helper, not in runtime. */
|
|
113
|
+
protected static __types: {
|
|
114
|
+
api: {
|
|
115
|
+
input: CreateConnectionGroupRequest;
|
|
116
|
+
output: CreateConnectionGroupResult;
|
|
117
|
+
};
|
|
118
|
+
sdk: {
|
|
119
|
+
input: CreateConnectionGroupCommandInput;
|
|
120
|
+
output: CreateConnectionGroupCommandOutput;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
}
|
|
@@ -308,7 +308,7 @@ declare const CreateDistributionCommand_base: {
|
|
|
308
308
|
* Bucket: "STRING_VALUE",
|
|
309
309
|
* Prefix: "STRING_VALUE",
|
|
310
310
|
* },
|
|
311
|
-
* PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All",
|
|
311
|
+
* PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All" || "None",
|
|
312
312
|
* Enabled: true || false, // required
|
|
313
313
|
* ViewerCertificate: { // ViewerCertificate
|
|
314
314
|
* CloudFrontDefaultCertificate: true || false,
|
|
@@ -334,6 +334,21 @@ declare const CreateDistributionCommand_base: {
|
|
|
334
334
|
* ContinuousDeploymentPolicyId: "STRING_VALUE",
|
|
335
335
|
* Staging: true || false,
|
|
336
336
|
* AnycastIpListId: "STRING_VALUE",
|
|
337
|
+
* TenantConfig: { // TenantConfig
|
|
338
|
+
* ParameterDefinitions: [ // ParameterDefinitions
|
|
339
|
+
* { // ParameterDefinition
|
|
340
|
+
* Name: "STRING_VALUE", // required
|
|
341
|
+
* Definition: { // ParameterDefinitionSchema
|
|
342
|
+
* StringSchema: { // StringSchemaConfig
|
|
343
|
+
* Comment: "STRING_VALUE",
|
|
344
|
+
* DefaultValue: "STRING_VALUE",
|
|
345
|
+
* Required: true || false, // required
|
|
346
|
+
* },
|
|
347
|
+
* },
|
|
348
|
+
* },
|
|
349
|
+
* ],
|
|
350
|
+
* },
|
|
351
|
+
* ConnectionMode: "direct" || "tenant-only",
|
|
337
352
|
* },
|
|
338
353
|
* };
|
|
339
354
|
* const command = new CreateDistributionCommand(input);
|
|
@@ -649,7 +664,7 @@ declare const CreateDistributionCommand_base: {
|
|
|
649
664
|
* // Bucket: "STRING_VALUE",
|
|
650
665
|
* // Prefix: "STRING_VALUE",
|
|
651
666
|
* // },
|
|
652
|
-
* // PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All",
|
|
667
|
+
* // PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All" || "None",
|
|
653
668
|
* // Enabled: true || false, // required
|
|
654
669
|
* // ViewerCertificate: { // ViewerCertificate
|
|
655
670
|
* // CloudFrontDefaultCertificate: true || false,
|
|
@@ -675,6 +690,21 @@ declare const CreateDistributionCommand_base: {
|
|
|
675
690
|
* // ContinuousDeploymentPolicyId: "STRING_VALUE",
|
|
676
691
|
* // Staging: true || false,
|
|
677
692
|
* // AnycastIpListId: "STRING_VALUE",
|
|
693
|
+
* // TenantConfig: { // TenantConfig
|
|
694
|
+
* // ParameterDefinitions: [ // ParameterDefinitions
|
|
695
|
+
* // { // ParameterDefinition
|
|
696
|
+
* // Name: "STRING_VALUE", // required
|
|
697
|
+
* // Definition: { // ParameterDefinitionSchema
|
|
698
|
+
* // StringSchema: { // StringSchemaConfig
|
|
699
|
+
* // Comment: "STRING_VALUE",
|
|
700
|
+
* // DefaultValue: "STRING_VALUE",
|
|
701
|
+
* // Required: true || false, // required
|
|
702
|
+
* // },
|
|
703
|
+
* // },
|
|
704
|
+
* // },
|
|
705
|
+
* // ],
|
|
706
|
+
* // },
|
|
707
|
+
* // ConnectionMode: "direct" || "tenant-only",
|
|
678
708
|
* // },
|
|
679
709
|
* // AliasICPRecordals: [ // AliasICPRecordals
|
|
680
710
|
* // { // AliasICPRecordal
|
|
@@ -709,6 +739,9 @@ declare const CreateDistributionCommand_base: {
|
|
|
709
739
|
* <p>The caller reference you attempted to create the distribution with is associated with
|
|
710
740
|
* another distribution.</p>
|
|
711
741
|
*
|
|
742
|
+
* @throws {@link EntityLimitExceeded} (client fault)
|
|
743
|
+
* <p>The entity limit has been exceeded.</p>
|
|
744
|
+
*
|
|
712
745
|
* @throws {@link EntityNotFound} (client fault)
|
|
713
746
|
* <p>The entity was not found.</p>
|
|
714
747
|
*
|