aws-sdk 2.801.0 → 2.805.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/CHANGELOG.md +25 -1
- package/README.md +1 -1
- package/apis/amplifybackend-2020-08-11.min.json +0 -8
- package/apis/batch-2016-08-10.min.json +81 -21
- package/apis/compute-optimizer-2019-11-01.min.json +110 -0
- package/apis/{profile-2020-08-15.examples.json → customer-profiles-2020-08-15.examples.json} +0 -0
- package/apis/{profile-2020-08-15.min.json → customer-profiles-2020-08-15.min.json} +3 -3
- package/apis/{profile-2020-08-15.paginators.json → customer-profiles-2020-08-15.paginators.json} +0 -0
- package/apis/dms-2016-01-01.min.json +9 -1
- package/apis/ec2-2016-11-15.min.json +4 -0
- package/apis/lambda-2015-03-31.examples.json +6 -6
- package/apis/license-manager-2018-08-01.min.json +957 -51
- package/apis/medialive-2017-10-14.min.json +240 -158
- package/apis/metadata.json +4 -3
- package/apis/rds-2014-10-31.min.json +200 -132
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +80 -0
- package/apis/ssm-2014-11-06.min.json +348 -203
- package/clients/all.d.ts +1 -1
- package/clients/all.js +2 -2
- package/clients/amplifybackend.d.ts +74 -74
- package/clients/batch.d.ts +200 -133
- package/clients/computeoptimizer.d.ts +179 -22
- package/clients/{profile.d.ts → customerprofiles.d.ts} +63 -63
- package/clients/customerprofiles.js +18 -0
- package/clients/directoryservice.d.ts +24 -21
- package/clients/dms.d.ts +16 -0
- package/clients/ec2.d.ts +6 -2
- package/clients/kafka.d.ts +4 -4
- package/clients/lambda.d.ts +10 -10
- package/clients/licensemanager.d.ts +1350 -72
- package/clients/medialive.d.ts +80 -1
- package/clients/rds.d.ts +128 -43
- package/clients/servicecatalogappregistry.d.ts +61 -0
- package/clients/ssm.d.ts +197 -10
- package/clients/workspaces.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +31 -27
- package/dist/aws-sdk.js +565 -343
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config_service_placeholders.d.ts +2 -2
- package/lib/core.js +1 -1
- package/lib/services/s3.js +6 -2
- package/package.json +1 -1
- package/clients/profile.js +0 -18
|
@@ -5,238 +5,238 @@ import {Service} from '../lib/service';
|
|
|
5
5
|
import {ServiceConfigurationOptions} from '../lib/service';
|
|
6
6
|
import {ConfigBase as Config} from '../lib/config-base';
|
|
7
7
|
interface Blob {}
|
|
8
|
-
declare class
|
|
8
|
+
declare class CustomerProfiles extends Service {
|
|
9
9
|
/**
|
|
10
10
|
* Constructs a service object. This object has one method for each API operation.
|
|
11
11
|
*/
|
|
12
|
-
constructor(options?:
|
|
13
|
-
config: Config &
|
|
12
|
+
constructor(options?: CustomerProfiles.Types.ClientConfiguration)
|
|
13
|
+
config: Config & CustomerProfiles.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
15
|
* Associates a new key value with a specific profile, such as a Contact Trace Record (CTR) ContactId. A profile object can have a single unique key and any number of additional keys that can be used to identify the profile that it belongs to.
|
|
16
16
|
*/
|
|
17
|
-
addProfileKey(params:
|
|
17
|
+
addProfileKey(params: CustomerProfiles.Types.AddProfileKeyRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.AddProfileKeyResponse) => void): Request<CustomerProfiles.Types.AddProfileKeyResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
19
|
* Associates a new key value with a specific profile, such as a Contact Trace Record (CTR) ContactId. A profile object can have a single unique key and any number of additional keys that can be used to identify the profile that it belongs to.
|
|
20
20
|
*/
|
|
21
|
-
addProfileKey(callback?: (err: AWSError, data:
|
|
21
|
+
addProfileKey(callback?: (err: AWSError, data: CustomerProfiles.Types.AddProfileKeyResponse) => void): Request<CustomerProfiles.Types.AddProfileKeyResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
23
|
* Creates a domain, which is a container for all customer data, such as customer profile attributes, object types, profile keys, and encryption keys. You can create multiple domains, and each domain can have multiple third-party integrations. Each Amazon Connect instance can be associated with only one domain. Multiple Amazon Connect instances can be associated with one domain.
|
|
24
24
|
*/
|
|
25
|
-
createDomain(params:
|
|
25
|
+
createDomain(params: CustomerProfiles.Types.CreateDomainRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.CreateDomainResponse) => void): Request<CustomerProfiles.Types.CreateDomainResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
27
|
* Creates a domain, which is a container for all customer data, such as customer profile attributes, object types, profile keys, and encryption keys. You can create multiple domains, and each domain can have multiple third-party integrations. Each Amazon Connect instance can be associated with only one domain. Multiple Amazon Connect instances can be associated with one domain.
|
|
28
28
|
*/
|
|
29
|
-
createDomain(callback?: (err: AWSError, data:
|
|
29
|
+
createDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.CreateDomainResponse) => void): Request<CustomerProfiles.Types.CreateDomainResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
31
|
* Creates a standard profile. A standard profile represents the following attributes for a customer profile in a domain.
|
|
32
32
|
*/
|
|
33
|
-
createProfile(params:
|
|
33
|
+
createProfile(params: CustomerProfiles.Types.CreateProfileRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.CreateProfileResponse) => void): Request<CustomerProfiles.Types.CreateProfileResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
35
|
* Creates a standard profile. A standard profile represents the following attributes for a customer profile in a domain.
|
|
36
36
|
*/
|
|
37
|
-
createProfile(callback?: (err: AWSError, data:
|
|
37
|
+
createProfile(callback?: (err: AWSError, data: CustomerProfiles.Types.CreateProfileResponse) => void): Request<CustomerProfiles.Types.CreateProfileResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
39
|
* Deletes a specific domain and all of its customer data, such as customer profile attributes and their related objects.
|
|
40
40
|
*/
|
|
41
|
-
deleteDomain(params:
|
|
41
|
+
deleteDomain(params: CustomerProfiles.Types.DeleteDomainRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteDomainResponse) => void): Request<CustomerProfiles.Types.DeleteDomainResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
43
|
* Deletes a specific domain and all of its customer data, such as customer profile attributes and their related objects.
|
|
44
44
|
*/
|
|
45
|
-
deleteDomain(callback?: (err: AWSError, data:
|
|
45
|
+
deleteDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteDomainResponse) => void): Request<CustomerProfiles.Types.DeleteDomainResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
47
|
* Removes an integration from a specific domain.
|
|
48
48
|
*/
|
|
49
|
-
deleteIntegration(params:
|
|
49
|
+
deleteIntegration(params: CustomerProfiles.Types.DeleteIntegrationRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteIntegrationResponse) => void): Request<CustomerProfiles.Types.DeleteIntegrationResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
51
|
* Removes an integration from a specific domain.
|
|
52
52
|
*/
|
|
53
|
-
deleteIntegration(callback?: (err: AWSError, data:
|
|
53
|
+
deleteIntegration(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteIntegrationResponse) => void): Request<CustomerProfiles.Types.DeleteIntegrationResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
55
|
* Deletes the standard customer profile and all data pertaining to the profile.
|
|
56
56
|
*/
|
|
57
|
-
deleteProfile(params:
|
|
57
|
+
deleteProfile(params: CustomerProfiles.Types.DeleteProfileRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileResponse) => void): Request<CustomerProfiles.Types.DeleteProfileResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
59
|
* Deletes the standard customer profile and all data pertaining to the profile.
|
|
60
60
|
*/
|
|
61
|
-
deleteProfile(callback?: (err: AWSError, data:
|
|
61
|
+
deleteProfile(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileResponse) => void): Request<CustomerProfiles.Types.DeleteProfileResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
63
|
* Removes a searchable key from a customer profile.
|
|
64
64
|
*/
|
|
65
|
-
deleteProfileKey(params:
|
|
65
|
+
deleteProfileKey(params: CustomerProfiles.Types.DeleteProfileKeyRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileKeyResponse) => void): Request<CustomerProfiles.Types.DeleteProfileKeyResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
67
|
* Removes a searchable key from a customer profile.
|
|
68
68
|
*/
|
|
69
|
-
deleteProfileKey(callback?: (err: AWSError, data:
|
|
69
|
+
deleteProfileKey(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileKeyResponse) => void): Request<CustomerProfiles.Types.DeleteProfileKeyResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
71
|
* Removes an object associated with a profile of a given ProfileObjectType.
|
|
72
72
|
*/
|
|
73
|
-
deleteProfileObject(params:
|
|
73
|
+
deleteProfileObject(params: CustomerProfiles.Types.DeleteProfileObjectRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileObjectResponse) => void): Request<CustomerProfiles.Types.DeleteProfileObjectResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
75
|
* Removes an object associated with a profile of a given ProfileObjectType.
|
|
76
76
|
*/
|
|
77
|
-
deleteProfileObject(callback?: (err: AWSError, data:
|
|
77
|
+
deleteProfileObject(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileObjectResponse) => void): Request<CustomerProfiles.Types.DeleteProfileObjectResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
79
|
* Removes a ProfileObjectType from a specific domain as well as removes all the ProfileObjects of that type. It also disables integrations from this specific ProfileObjectType. In addition, it scrubs all of the fields of the standard profile that were populated from this ProfileObjectType.
|
|
80
80
|
*/
|
|
81
|
-
deleteProfileObjectType(params:
|
|
81
|
+
deleteProfileObjectType(params: CustomerProfiles.Types.DeleteProfileObjectTypeRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileObjectTypeResponse) => void): Request<CustomerProfiles.Types.DeleteProfileObjectTypeResponse, AWSError>;
|
|
82
82
|
/**
|
|
83
83
|
* Removes a ProfileObjectType from a specific domain as well as removes all the ProfileObjects of that type. It also disables integrations from this specific ProfileObjectType. In addition, it scrubs all of the fields of the standard profile that were populated from this ProfileObjectType.
|
|
84
84
|
*/
|
|
85
|
-
deleteProfileObjectType(callback?: (err: AWSError, data:
|
|
85
|
+
deleteProfileObjectType(callback?: (err: AWSError, data: CustomerProfiles.Types.DeleteProfileObjectTypeResponse) => void): Request<CustomerProfiles.Types.DeleteProfileObjectTypeResponse, AWSError>;
|
|
86
86
|
/**
|
|
87
87
|
* Returns information about a specific domain.
|
|
88
88
|
*/
|
|
89
|
-
getDomain(params:
|
|
89
|
+
getDomain(params: CustomerProfiles.Types.GetDomainRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.GetDomainResponse) => void): Request<CustomerProfiles.Types.GetDomainResponse, AWSError>;
|
|
90
90
|
/**
|
|
91
91
|
* Returns information about a specific domain.
|
|
92
92
|
*/
|
|
93
|
-
getDomain(callback?: (err: AWSError, data:
|
|
93
|
+
getDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.GetDomainResponse) => void): Request<CustomerProfiles.Types.GetDomainResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
95
|
* Returns an integration for a domain.
|
|
96
96
|
*/
|
|
97
|
-
getIntegration(params:
|
|
97
|
+
getIntegration(params: CustomerProfiles.Types.GetIntegrationRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.GetIntegrationResponse) => void): Request<CustomerProfiles.Types.GetIntegrationResponse, AWSError>;
|
|
98
98
|
/**
|
|
99
99
|
* Returns an integration for a domain.
|
|
100
100
|
*/
|
|
101
|
-
getIntegration(callback?: (err: AWSError, data:
|
|
101
|
+
getIntegration(callback?: (err: AWSError, data: CustomerProfiles.Types.GetIntegrationResponse) => void): Request<CustomerProfiles.Types.GetIntegrationResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
103
|
* Returns the object types for a specific domain.
|
|
104
104
|
*/
|
|
105
|
-
getProfileObjectType(params:
|
|
105
|
+
getProfileObjectType(params: CustomerProfiles.Types.GetProfileObjectTypeRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.GetProfileObjectTypeResponse) => void): Request<CustomerProfiles.Types.GetProfileObjectTypeResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
107
|
* Returns the object types for a specific domain.
|
|
108
108
|
*/
|
|
109
|
-
getProfileObjectType(callback?: (err: AWSError, data:
|
|
109
|
+
getProfileObjectType(callback?: (err: AWSError, data: CustomerProfiles.Types.GetProfileObjectTypeResponse) => void): Request<CustomerProfiles.Types.GetProfileObjectTypeResponse, AWSError>;
|
|
110
110
|
/**
|
|
111
111
|
* Returns the template information for a specific object type. A template is a predefined ProfileObjectType, such as “Salesforce-Account” or “Salesforce-Contact.” When a user sends a ProfileObject, using the PutProfileObject API, with an ObjectTypeName that matches one of the TemplateIds, it uses the mappings from the template.
|
|
112
112
|
*/
|
|
113
|
-
getProfileObjectTypeTemplate(params:
|
|
113
|
+
getProfileObjectTypeTemplate(params: CustomerProfiles.Types.GetProfileObjectTypeTemplateRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.GetProfileObjectTypeTemplateResponse) => void): Request<CustomerProfiles.Types.GetProfileObjectTypeTemplateResponse, AWSError>;
|
|
114
114
|
/**
|
|
115
115
|
* Returns the template information for a specific object type. A template is a predefined ProfileObjectType, such as “Salesforce-Account” or “Salesforce-Contact.” When a user sends a ProfileObject, using the PutProfileObject API, with an ObjectTypeName that matches one of the TemplateIds, it uses the mappings from the template.
|
|
116
116
|
*/
|
|
117
|
-
getProfileObjectTypeTemplate(callback?: (err: AWSError, data:
|
|
117
|
+
getProfileObjectTypeTemplate(callback?: (err: AWSError, data: CustomerProfiles.Types.GetProfileObjectTypeTemplateResponse) => void): Request<CustomerProfiles.Types.GetProfileObjectTypeTemplateResponse, AWSError>;
|
|
118
118
|
/**
|
|
119
119
|
* Lists all of the integrations associated to a specific URI in the AWS account.
|
|
120
120
|
*/
|
|
121
|
-
listAccountIntegrations(params:
|
|
121
|
+
listAccountIntegrations(params: CustomerProfiles.Types.ListAccountIntegrationsRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListAccountIntegrationsResponse) => void): Request<CustomerProfiles.Types.ListAccountIntegrationsResponse, AWSError>;
|
|
122
122
|
/**
|
|
123
123
|
* Lists all of the integrations associated to a specific URI in the AWS account.
|
|
124
124
|
*/
|
|
125
|
-
listAccountIntegrations(callback?: (err: AWSError, data:
|
|
125
|
+
listAccountIntegrations(callback?: (err: AWSError, data: CustomerProfiles.Types.ListAccountIntegrationsResponse) => void): Request<CustomerProfiles.Types.ListAccountIntegrationsResponse, AWSError>;
|
|
126
126
|
/**
|
|
127
127
|
* Returns a list of all the domains for an AWS account that have been created.
|
|
128
128
|
*/
|
|
129
|
-
listDomains(params:
|
|
129
|
+
listDomains(params: CustomerProfiles.Types.ListDomainsRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListDomainsResponse) => void): Request<CustomerProfiles.Types.ListDomainsResponse, AWSError>;
|
|
130
130
|
/**
|
|
131
131
|
* Returns a list of all the domains for an AWS account that have been created.
|
|
132
132
|
*/
|
|
133
|
-
listDomains(callback?: (err: AWSError, data:
|
|
133
|
+
listDomains(callback?: (err: AWSError, data: CustomerProfiles.Types.ListDomainsResponse) => void): Request<CustomerProfiles.Types.ListDomainsResponse, AWSError>;
|
|
134
134
|
/**
|
|
135
135
|
* Lists all of the integrations in your domain.
|
|
136
136
|
*/
|
|
137
|
-
listIntegrations(params:
|
|
137
|
+
listIntegrations(params: CustomerProfiles.Types.ListIntegrationsRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListIntegrationsResponse) => void): Request<CustomerProfiles.Types.ListIntegrationsResponse, AWSError>;
|
|
138
138
|
/**
|
|
139
139
|
* Lists all of the integrations in your domain.
|
|
140
140
|
*/
|
|
141
|
-
listIntegrations(callback?: (err: AWSError, data:
|
|
141
|
+
listIntegrations(callback?: (err: AWSError, data: CustomerProfiles.Types.ListIntegrationsResponse) => void): Request<CustomerProfiles.Types.ListIntegrationsResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
143
|
* Lists all of the template information for object types.
|
|
144
144
|
*/
|
|
145
|
-
listProfileObjectTypeTemplates(params:
|
|
145
|
+
listProfileObjectTypeTemplates(params: CustomerProfiles.Types.ListProfileObjectTypeTemplatesRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListProfileObjectTypeTemplatesResponse) => void): Request<CustomerProfiles.Types.ListProfileObjectTypeTemplatesResponse, AWSError>;
|
|
146
146
|
/**
|
|
147
147
|
* Lists all of the template information for object types.
|
|
148
148
|
*/
|
|
149
|
-
listProfileObjectTypeTemplates(callback?: (err: AWSError, data:
|
|
149
|
+
listProfileObjectTypeTemplates(callback?: (err: AWSError, data: CustomerProfiles.Types.ListProfileObjectTypeTemplatesResponse) => void): Request<CustomerProfiles.Types.ListProfileObjectTypeTemplatesResponse, AWSError>;
|
|
150
150
|
/**
|
|
151
151
|
* Lists all of the templates available within the service.
|
|
152
152
|
*/
|
|
153
|
-
listProfileObjectTypes(params:
|
|
153
|
+
listProfileObjectTypes(params: CustomerProfiles.Types.ListProfileObjectTypesRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListProfileObjectTypesResponse) => void): Request<CustomerProfiles.Types.ListProfileObjectTypesResponse, AWSError>;
|
|
154
154
|
/**
|
|
155
155
|
* Lists all of the templates available within the service.
|
|
156
156
|
*/
|
|
157
|
-
listProfileObjectTypes(callback?: (err: AWSError, data:
|
|
157
|
+
listProfileObjectTypes(callback?: (err: AWSError, data: CustomerProfiles.Types.ListProfileObjectTypesResponse) => void): Request<CustomerProfiles.Types.ListProfileObjectTypesResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
159
|
* Returns a list of objects associated with a profile of a given ProfileObjectType.
|
|
160
160
|
*/
|
|
161
|
-
listProfileObjects(params:
|
|
161
|
+
listProfileObjects(params: CustomerProfiles.Types.ListProfileObjectsRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListProfileObjectsResponse) => void): Request<CustomerProfiles.Types.ListProfileObjectsResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
163
|
* Returns a list of objects associated with a profile of a given ProfileObjectType.
|
|
164
164
|
*/
|
|
165
|
-
listProfileObjects(callback?: (err: AWSError, data:
|
|
165
|
+
listProfileObjects(callback?: (err: AWSError, data: CustomerProfiles.Types.ListProfileObjectsResponse) => void): Request<CustomerProfiles.Types.ListProfileObjectsResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
167
|
* Displays the tags associated with an Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.
|
|
168
168
|
*/
|
|
169
|
-
listTagsForResource(params:
|
|
169
|
+
listTagsForResource(params: CustomerProfiles.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.ListTagsForResourceResponse) => void): Request<CustomerProfiles.Types.ListTagsForResourceResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
171
|
* Displays the tags associated with an Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.
|
|
172
172
|
*/
|
|
173
|
-
listTagsForResource(callback?: (err: AWSError, data:
|
|
173
|
+
listTagsForResource(callback?: (err: AWSError, data: CustomerProfiles.Types.ListTagsForResourceResponse) => void): Request<CustomerProfiles.Types.ListTagsForResourceResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
175
|
* Adds an integration between the service and a third-party service, which includes Amazon AppFlow and Amazon Connect. An integration can belong to only one domain.
|
|
176
176
|
*/
|
|
177
|
-
putIntegration(params:
|
|
177
|
+
putIntegration(params: CustomerProfiles.Types.PutIntegrationRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.PutIntegrationResponse) => void): Request<CustomerProfiles.Types.PutIntegrationResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
179
|
* Adds an integration between the service and a third-party service, which includes Amazon AppFlow and Amazon Connect. An integration can belong to only one domain.
|
|
180
180
|
*/
|
|
181
|
-
putIntegration(callback?: (err: AWSError, data:
|
|
181
|
+
putIntegration(callback?: (err: AWSError, data: CustomerProfiles.Types.PutIntegrationResponse) => void): Request<CustomerProfiles.Types.PutIntegrationResponse, AWSError>;
|
|
182
182
|
/**
|
|
183
183
|
* Adds additional objects to customer profiles of a given ObjectType. When adding a specific profile object, like a Contact Trace Record (CTR), an inferred profile can get created if it is not mapped to an existing profile. The resulting profile will only have a phone number populated in the standard ProfileObject. Any additional CTRs with the same phone number will be mapped to the same inferred profile. When a ProfileObject is created and if a ProfileObjectType already exists for the ProfileObject, it will provide data to a standard profile depending on the ProfileObjectType definition. PutProfileObject needs an ObjectType, which can be created using PutProfileObjectType.
|
|
184
184
|
*/
|
|
185
|
-
putProfileObject(params:
|
|
185
|
+
putProfileObject(params: CustomerProfiles.Types.PutProfileObjectRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.PutProfileObjectResponse) => void): Request<CustomerProfiles.Types.PutProfileObjectResponse, AWSError>;
|
|
186
186
|
/**
|
|
187
187
|
* Adds additional objects to customer profiles of a given ObjectType. When adding a specific profile object, like a Contact Trace Record (CTR), an inferred profile can get created if it is not mapped to an existing profile. The resulting profile will only have a phone number populated in the standard ProfileObject. Any additional CTRs with the same phone number will be mapped to the same inferred profile. When a ProfileObject is created and if a ProfileObjectType already exists for the ProfileObject, it will provide data to a standard profile depending on the ProfileObjectType definition. PutProfileObject needs an ObjectType, which can be created using PutProfileObjectType.
|
|
188
188
|
*/
|
|
189
|
-
putProfileObject(callback?: (err: AWSError, data:
|
|
189
|
+
putProfileObject(callback?: (err: AWSError, data: CustomerProfiles.Types.PutProfileObjectResponse) => void): Request<CustomerProfiles.Types.PutProfileObjectResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
191
|
* Defines a ProfileObjectType.
|
|
192
192
|
*/
|
|
193
|
-
putProfileObjectType(params:
|
|
193
|
+
putProfileObjectType(params: CustomerProfiles.Types.PutProfileObjectTypeRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.PutProfileObjectTypeResponse) => void): Request<CustomerProfiles.Types.PutProfileObjectTypeResponse, AWSError>;
|
|
194
194
|
/**
|
|
195
195
|
* Defines a ProfileObjectType.
|
|
196
196
|
*/
|
|
197
|
-
putProfileObjectType(callback?: (err: AWSError, data:
|
|
197
|
+
putProfileObjectType(callback?: (err: AWSError, data: CustomerProfiles.Types.PutProfileObjectTypeResponse) => void): Request<CustomerProfiles.Types.PutProfileObjectTypeResponse, AWSError>;
|
|
198
198
|
/**
|
|
199
199
|
* Searches for profiles within a specific domain name using name, phone number, email address, account number, or a custom defined index.
|
|
200
200
|
*/
|
|
201
|
-
searchProfiles(params:
|
|
201
|
+
searchProfiles(params: CustomerProfiles.Types.SearchProfilesRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.SearchProfilesResponse) => void): Request<CustomerProfiles.Types.SearchProfilesResponse, AWSError>;
|
|
202
202
|
/**
|
|
203
203
|
* Searches for profiles within a specific domain name using name, phone number, email address, account number, or a custom defined index.
|
|
204
204
|
*/
|
|
205
|
-
searchProfiles(callback?: (err: AWSError, data:
|
|
205
|
+
searchProfiles(callback?: (err: AWSError, data: CustomerProfiles.Types.SearchProfilesResponse) => void): Request<CustomerProfiles.Types.SearchProfilesResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
207
|
* Assigns one or more tags (key-value pairs) to the specified Amazon Connect Customer Profiles resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged. Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource.
|
|
208
208
|
*/
|
|
209
|
-
tagResource(params:
|
|
209
|
+
tagResource(params: CustomerProfiles.Types.TagResourceRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.TagResourceResponse) => void): Request<CustomerProfiles.Types.TagResourceResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
211
|
* Assigns one or more tags (key-value pairs) to the specified Amazon Connect Customer Profiles resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged. Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a resource.
|
|
212
212
|
*/
|
|
213
|
-
tagResource(callback?: (err: AWSError, data:
|
|
213
|
+
tagResource(callback?: (err: AWSError, data: CustomerProfiles.Types.TagResourceResponse) => void): Request<CustomerProfiles.Types.TagResourceResponse, AWSError>;
|
|
214
214
|
/**
|
|
215
215
|
* Removes one or more tags from the specified Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.
|
|
216
216
|
*/
|
|
217
|
-
untagResource(params:
|
|
217
|
+
untagResource(params: CustomerProfiles.Types.UntagResourceRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.UntagResourceResponse) => void): Request<CustomerProfiles.Types.UntagResourceResponse, AWSError>;
|
|
218
218
|
/**
|
|
219
219
|
* Removes one or more tags from the specified Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.
|
|
220
220
|
*/
|
|
221
|
-
untagResource(callback?: (err: AWSError, data:
|
|
221
|
+
untagResource(callback?: (err: AWSError, data: CustomerProfiles.Types.UntagResourceResponse) => void): Request<CustomerProfiles.Types.UntagResourceResponse, AWSError>;
|
|
222
222
|
/**
|
|
223
223
|
* Updates the properties of a domain, including creating or selecting a dead letter queue or an encryption key. Once a domain is created, the name can’t be changed.
|
|
224
224
|
*/
|
|
225
|
-
updateDomain(params:
|
|
225
|
+
updateDomain(params: CustomerProfiles.Types.UpdateDomainRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.UpdateDomainResponse) => void): Request<CustomerProfiles.Types.UpdateDomainResponse, AWSError>;
|
|
226
226
|
/**
|
|
227
227
|
* Updates the properties of a domain, including creating or selecting a dead letter queue or an encryption key. Once a domain is created, the name can’t be changed.
|
|
228
228
|
*/
|
|
229
|
-
updateDomain(callback?: (err: AWSError, data:
|
|
229
|
+
updateDomain(callback?: (err: AWSError, data: CustomerProfiles.Types.UpdateDomainResponse) => void): Request<CustomerProfiles.Types.UpdateDomainResponse, AWSError>;
|
|
230
230
|
/**
|
|
231
231
|
* Updates the properties of a profile. The ProfileId is required for updating a customer profile. When calling the UpdateProfile API, specifying an empty string value means that any existing value will be removed. Not specifying a string value means that any value already there will be kept.
|
|
232
232
|
*/
|
|
233
|
-
updateProfile(params:
|
|
233
|
+
updateProfile(params: CustomerProfiles.Types.UpdateProfileRequest, callback?: (err: AWSError, data: CustomerProfiles.Types.UpdateProfileResponse) => void): Request<CustomerProfiles.Types.UpdateProfileResponse, AWSError>;
|
|
234
234
|
/**
|
|
235
235
|
* Updates the properties of a profile. The ProfileId is required for updating a customer profile. When calling the UpdateProfile API, specifying an empty string value means that any existing value will be removed. Not specifying a string value means that any value already there will be kept.
|
|
236
236
|
*/
|
|
237
|
-
updateProfile(callback?: (err: AWSError, data:
|
|
237
|
+
updateProfile(callback?: (err: AWSError, data: CustomerProfiles.Types.UpdateProfileResponse) => void): Request<CustomerProfiles.Types.UpdateProfileResponse, AWSError>;
|
|
238
238
|
}
|
|
239
|
-
declare namespace
|
|
239
|
+
declare namespace CustomerProfiles {
|
|
240
240
|
export type name = string;
|
|
241
241
|
export interface AddProfileKeyRequest {
|
|
242
242
|
/**
|
|
@@ -1563,8 +1563,8 @@ declare namespace Profile {
|
|
|
1563
1563
|
}
|
|
1564
1564
|
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
|
1565
1565
|
/**
|
|
1566
|
-
* Contains interfaces for use with the
|
|
1566
|
+
* Contains interfaces for use with the CustomerProfiles client.
|
|
1567
1567
|
*/
|
|
1568
|
-
export import Types =
|
|
1568
|
+
export import Types = CustomerProfiles;
|
|
1569
1569
|
}
|
|
1570
|
-
export =
|
|
1570
|
+
export = CustomerProfiles;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['customerprofiles'] = {};
|
|
7
|
+
AWS.CustomerProfiles = Service.defineService('customerprofiles', ['2020-08-15']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['customerprofiles'], '2020-08-15', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/customer-profiles-2020-08-15.min.json');
|
|
11
|
+
model.paginators = require('../apis/customer-profiles-2020-08-15.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.CustomerProfiles;
|
|
@@ -164,11 +164,11 @@ declare class DirectoryService extends Service {
|
|
|
164
164
|
*/
|
|
165
165
|
deleteTrust(callback?: (err: AWSError, data: DirectoryService.Types.DeleteTrustResult) => void): Request<DirectoryService.Types.DeleteTrustResult, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Deletes from the system the certificate that was registered for
|
|
167
|
+
* Deletes from the system the certificate that was registered for secure LDAP or client certificate authentication.
|
|
168
168
|
*/
|
|
169
169
|
deregisterCertificate(params: DirectoryService.Types.DeregisterCertificateRequest, callback?: (err: AWSError, data: DirectoryService.Types.DeregisterCertificateResult) => void): Request<DirectoryService.Types.DeregisterCertificateResult, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Deletes from the system the certificate that was registered for
|
|
171
|
+
* Deletes from the system the certificate that was registered for secure LDAP or client certificate authentication.
|
|
172
172
|
*/
|
|
173
173
|
deregisterCertificate(callback?: (err: AWSError, data: DirectoryService.Types.DeregisterCertificateResult) => void): Request<DirectoryService.Types.DeregisterCertificateResult, AWSError>;
|
|
174
174
|
/**
|
|
@@ -180,11 +180,11 @@ declare class DirectoryService extends Service {
|
|
|
180
180
|
*/
|
|
181
181
|
deregisterEventTopic(callback?: (err: AWSError, data: DirectoryService.Types.DeregisterEventTopicResult) => void): Request<DirectoryService.Types.DeregisterEventTopicResult, AWSError>;
|
|
182
182
|
/**
|
|
183
|
-
* Displays information about the certificate registered for
|
|
183
|
+
* Displays information about the certificate registered for secure LDAP or client certificate authentication.
|
|
184
184
|
*/
|
|
185
185
|
describeCertificate(params: DirectoryService.Types.DescribeCertificateRequest, callback?: (err: AWSError, data: DirectoryService.Types.DescribeCertificateResult) => void): Request<DirectoryService.Types.DescribeCertificateResult, AWSError>;
|
|
186
186
|
/**
|
|
187
|
-
* Displays information about the certificate registered for
|
|
187
|
+
* Displays information about the certificate registered for secure LDAP or client certificate authentication.
|
|
188
188
|
*/
|
|
189
189
|
describeCertificate(callback?: (err: AWSError, data: DirectoryService.Types.DescribeCertificateResult) => void): Request<DirectoryService.Types.DescribeCertificateResult, AWSError>;
|
|
190
190
|
/**
|
|
@@ -260,11 +260,11 @@ declare class DirectoryService extends Service {
|
|
|
260
260
|
*/
|
|
261
261
|
describeTrusts(callback?: (err: AWSError, data: DirectoryService.Types.DescribeTrustsResult) => void): Request<DirectoryService.Types.DescribeTrustsResult, AWSError>;
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* Disables alternative client authentication methods for the specified directory.
|
|
264
264
|
*/
|
|
265
265
|
disableClientAuthentication(params: DirectoryService.Types.DisableClientAuthenticationRequest, callback?: (err: AWSError, data: DirectoryService.Types.DisableClientAuthenticationResult) => void): Request<DirectoryService.Types.DisableClientAuthenticationResult, AWSError>;
|
|
266
266
|
/**
|
|
267
|
-
*
|
|
267
|
+
* Disables alternative client authentication methods for the specified directory.
|
|
268
268
|
*/
|
|
269
269
|
disableClientAuthentication(callback?: (err: AWSError, data: DirectoryService.Types.DisableClientAuthenticationResult) => void): Request<DirectoryService.Types.DisableClientAuthenticationResult, AWSError>;
|
|
270
270
|
/**
|
|
@@ -292,11 +292,11 @@ declare class DirectoryService extends Service {
|
|
|
292
292
|
*/
|
|
293
293
|
disableSso(callback?: (err: AWSError, data: DirectoryService.Types.DisableSsoResult) => void): Request<DirectoryService.Types.DisableSsoResult, AWSError>;
|
|
294
294
|
/**
|
|
295
|
-
*
|
|
295
|
+
* Enables alternative client authentication methods for the specified directory.
|
|
296
296
|
*/
|
|
297
297
|
enableClientAuthentication(params: DirectoryService.Types.EnableClientAuthenticationRequest, callback?: (err: AWSError, data: DirectoryService.Types.EnableClientAuthenticationResult) => void): Request<DirectoryService.Types.EnableClientAuthenticationResult, AWSError>;
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* Enables alternative client authentication methods for the specified directory.
|
|
300
300
|
*/
|
|
301
301
|
enableClientAuthentication(callback?: (err: AWSError, data: DirectoryService.Types.EnableClientAuthenticationResult) => void): Request<DirectoryService.Types.EnableClientAuthenticationResult, AWSError>;
|
|
302
302
|
/**
|
|
@@ -340,11 +340,11 @@ declare class DirectoryService extends Service {
|
|
|
340
340
|
*/
|
|
341
341
|
getSnapshotLimits(callback?: (err: AWSError, data: DirectoryService.Types.GetSnapshotLimitsResult) => void): Request<DirectoryService.Types.GetSnapshotLimitsResult, AWSError>;
|
|
342
342
|
/**
|
|
343
|
-
* For the specified directory, lists all the certificates registered for a
|
|
343
|
+
* For the specified directory, lists all the certificates registered for a secure LDAP or client certificate authentication.
|
|
344
344
|
*/
|
|
345
345
|
listCertificates(params: DirectoryService.Types.ListCertificatesRequest, callback?: (err: AWSError, data: DirectoryService.Types.ListCertificatesResult) => void): Request<DirectoryService.Types.ListCertificatesResult, AWSError>;
|
|
346
346
|
/**
|
|
347
|
-
* For the specified directory, lists all the certificates registered for a
|
|
347
|
+
* For the specified directory, lists all the certificates registered for a secure LDAP or client certificate authentication.
|
|
348
348
|
*/
|
|
349
349
|
listCertificates(callback?: (err: AWSError, data: DirectoryService.Types.ListCertificatesResult) => void): Request<DirectoryService.Types.ListCertificatesResult, AWSError>;
|
|
350
350
|
/**
|
|
@@ -380,11 +380,11 @@ declare class DirectoryService extends Service {
|
|
|
380
380
|
*/
|
|
381
381
|
listTagsForResource(callback?: (err: AWSError, data: DirectoryService.Types.ListTagsForResourceResult) => void): Request<DirectoryService.Types.ListTagsForResourceResult, AWSError>;
|
|
382
382
|
/**
|
|
383
|
-
* Registers a certificate for
|
|
383
|
+
* Registers a certificate for a secure LDAP or client certificate authentication.
|
|
384
384
|
*/
|
|
385
385
|
registerCertificate(params: DirectoryService.Types.RegisterCertificateRequest, callback?: (err: AWSError, data: DirectoryService.Types.RegisterCertificateResult) => void): Request<DirectoryService.Types.RegisterCertificateResult, AWSError>;
|
|
386
386
|
/**
|
|
387
|
-
* Registers a certificate for
|
|
387
|
+
* Registers a certificate for a secure LDAP or client certificate authentication.
|
|
388
388
|
*/
|
|
389
389
|
registerCertificate(callback?: (err: AWSError, data: DirectoryService.Types.RegisterCertificateResult) => void): Request<DirectoryService.Types.RegisterCertificateResult, AWSError>;
|
|
390
390
|
/**
|
|
@@ -619,11 +619,11 @@ declare namespace DirectoryService {
|
|
|
619
619
|
*/
|
|
620
620
|
ExpiryDateTime?: CertificateExpiryDateTime;
|
|
621
621
|
/**
|
|
622
|
-
*
|
|
622
|
+
* The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.
|
|
623
623
|
*/
|
|
624
624
|
Type?: CertificateType;
|
|
625
625
|
/**
|
|
626
|
-
*
|
|
626
|
+
* A ClientCertAuthSettings object that contains client certificate authentication settings.
|
|
627
627
|
*/
|
|
628
628
|
ClientCertAuthSettings?: ClientCertAuthSettings;
|
|
629
629
|
}
|
|
@@ -649,7 +649,7 @@ declare namespace DirectoryService {
|
|
|
649
649
|
*/
|
|
650
650
|
ExpiryDateTime?: CertificateExpiryDateTime;
|
|
651
651
|
/**
|
|
652
|
-
*
|
|
652
|
+
* The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.
|
|
653
653
|
*/
|
|
654
654
|
Type?: CertificateType;
|
|
655
655
|
}
|
|
@@ -663,7 +663,7 @@ declare namespace DirectoryService {
|
|
|
663
663
|
export type ClientAuthenticationType = "SmartCard"|string;
|
|
664
664
|
export interface ClientCertAuthSettings {
|
|
665
665
|
/**
|
|
666
|
-
* Specifies the URL of the default OCSP server used to check for revocation status.
|
|
666
|
+
* Specifies the URL of the default OCSP server used to check for revocation status. A secondary value to any OCSP address found in the AIA extension of the user certificate.
|
|
667
667
|
*/
|
|
668
668
|
OCSPUrl?: OCSPUrl;
|
|
669
669
|
}
|
|
@@ -1487,11 +1487,11 @@ declare namespace DirectoryService {
|
|
|
1487
1487
|
}
|
|
1488
1488
|
export interface DisableClientAuthenticationRequest {
|
|
1489
1489
|
/**
|
|
1490
|
-
*
|
|
1490
|
+
* The identifier of the directory
|
|
1491
1491
|
*/
|
|
1492
1492
|
DirectoryId: DirectoryId;
|
|
1493
1493
|
/**
|
|
1494
|
-
*
|
|
1494
|
+
* The type of client authentication to disable. Currently, only the parameter, SmartCard is supported.
|
|
1495
1495
|
*/
|
|
1496
1496
|
Type: ClientAuthenticationType;
|
|
1497
1497
|
}
|
|
@@ -1583,11 +1583,11 @@ declare namespace DirectoryService {
|
|
|
1583
1583
|
export type DomainControllers = DomainController[];
|
|
1584
1584
|
export interface EnableClientAuthenticationRequest {
|
|
1585
1585
|
/**
|
|
1586
|
-
*
|
|
1586
|
+
* The identifier of the specified directory.
|
|
1587
1587
|
*/
|
|
1588
1588
|
DirectoryId: DirectoryId;
|
|
1589
1589
|
/**
|
|
1590
|
-
*
|
|
1590
|
+
* The type of client authentication to enable. Currently only the value SmartCard is supported. Smart card authentication in AD Connector requires that you enable Kerberos Constrained Delegation for the Service User to the LDAP service in the on-premises AD.
|
|
1591
1591
|
*/
|
|
1592
1592
|
Type: ClientAuthenticationType;
|
|
1593
1593
|
}
|
|
@@ -2009,9 +2009,12 @@ declare namespace DirectoryService {
|
|
|
2009
2009
|
*/
|
|
2010
2010
|
CertificateData: CertificateData;
|
|
2011
2011
|
/**
|
|
2012
|
-
* The certificate
|
|
2012
|
+
* The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.
|
|
2013
2013
|
*/
|
|
2014
2014
|
Type?: CertificateType;
|
|
2015
|
+
/**
|
|
2016
|
+
* A ClientCertAuthSettings object that contains client certificate authentication settings.
|
|
2017
|
+
*/
|
|
2015
2018
|
ClientCertAuthSettings?: ClientCertAuthSettings;
|
|
2016
2019
|
}
|
|
2017
2020
|
export interface RegisterCertificateResult {
|
package/clients/dms.d.ts
CHANGED
|
@@ -3456,6 +3456,22 @@ declare namespace DMS {
|
|
|
3456
3456
|
* Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH. Use this parameter when DatePartitionedEnabled is set to true.
|
|
3457
3457
|
*/
|
|
3458
3458
|
DatePartitionDelimiter?: DatePartitionDelimiterValue;
|
|
3459
|
+
/**
|
|
3460
|
+
* This setting applies if the S3 output files during a change data capture (CDC) load are written in .csv format. If set to true for columns not included in the supplemental log, AWS DMS uses the value specified by CsvNoSupValue . If not set or set to false, AWS DMS uses the null value for these columns. This setting is supported in AWS DMS versions 3.4.1 and later.
|
|
3461
|
+
*/
|
|
3462
|
+
UseCsvNoSupValue?: BooleanOptional;
|
|
3463
|
+
/**
|
|
3464
|
+
* This setting only applies if your Amazon S3 output files during a change data capture (CDC) load are written in .csv format. If UseCsvNoSupValue is set to true, specify a string value that you want AWS DMS to use for all columns not included in the supplemental log. If you do not specify a string value, AWS DMS uses the null value for these columns regardless of the UseCsvNoSupValue setting. This setting is supported in AWS DMS versions 3.4.1 and later.
|
|
3465
|
+
*/
|
|
3466
|
+
CsvNoSupValue?: String;
|
|
3467
|
+
/**
|
|
3468
|
+
* If set to true, AWS DMS saves the transaction order for a change data capture (CDC) load on the Amazon S3 target specified by CdcPath . This setting is supported in AWS DMS versions 3.4.2 and later.
|
|
3469
|
+
*/
|
|
3470
|
+
PreserveTransactions?: BooleanOptional;
|
|
3471
|
+
/**
|
|
3472
|
+
* Specifies the folder path of CDC files. For an S3 source, this setting is required if a task captures change data; otherwise, it's optional. If CdcPath is set, AWS DMS reads CDC files from this path and replicates the data changes to the target endpoint. For an S3 target, if CdcPathis set, it is the folder path where data changes are replicated. If you set PreserveTransactions to true, AWS DMS verifies that you have set this parameter to a folder path on your S3 target where AWS DMS can save the transaction order for the CDC load. AWS DMS creates this CDC folder path in either your S3 target working directory or the S3 target location specified by BucketFolder and BucketName . For example, if you specify CdcPath as MyChangedData, and you specify BucketName as MyTargetBucket but do not specify BucketFolder, AWS DMS creates the CDC folder path following: MyTargetBucket/MyChangedData. If you specify the same CdcPath, and you specify BucketName as MyTargetBucket and BucketFolder as MyTargetData, AWS DMS creates the CDC folder path following: MyTargetBucket/MyTargetData/MyChangedData. This setting is supported in AWS DMS versions 3.4.2 and later.
|
|
3473
|
+
*/
|
|
3474
|
+
CdcPath?: String;
|
|
3459
3475
|
}
|
|
3460
3476
|
export type SafeguardPolicy = "rely-on-sql-server-replication-agent"|"exclusive-automatic-truncation"|"shared-automatic-truncation"|string;
|
|
3461
3477
|
export type SchemaList = String[];
|
package/clients/ec2.d.ts
CHANGED
|
@@ -6432,9 +6432,13 @@ declare namespace EC2 {
|
|
|
6432
6432
|
*/
|
|
6433
6433
|
Name: String;
|
|
6434
6434
|
/**
|
|
6435
|
-
* By default, Amazon EC2 attempts to shut down and reboot the instance before creating the image. If the
|
|
6435
|
+
* By default, Amazon EC2 attempts to shut down and reboot the instance before creating the image. If the No Reboot option is set, Amazon EC2 doesn't shut down the instance before creating the image. When this option is used, file system integrity on the created image can't be guaranteed.
|
|
6436
6436
|
*/
|
|
6437
6437
|
NoReboot?: Boolean;
|
|
6438
|
+
/**
|
|
6439
|
+
* The tags to apply to the AMI and snapshots on creation. You can tag the AMI, the snapshots, or both. To tag the AMI, the value for ResourceType must be image. To tag the snapshots that are created of the root volume and of other EBS volumes that are attached to the instance, the value for ResourceType must be snapshot. The same tag is applied to all of the snapshots that are created. If you specify other values for ResourceType, the request fails. To tag an AMI or snapshot after it has been created, see CreateTags.
|
|
6440
|
+
*/
|
|
6441
|
+
TagSpecifications?: TagSpecificationList;
|
|
6438
6442
|
}
|
|
6439
6443
|
export interface CreateImageResult {
|
|
6440
6444
|
/**
|
|
@@ -24210,7 +24214,7 @@ declare namespace EC2 {
|
|
|
24210
24214
|
export type TagList = Tag[];
|
|
24211
24215
|
export interface TagSpecification {
|
|
24212
24216
|
/**
|
|
24213
|
-
* The type of resource to tag. Currently, the resource types that support tagging on creation are: capacity-reservation | carrier-gateway | client-vpn-endpoint | customer-gateway | dedicated-host | dhcp-options | export-image-task | export-instance-task | fleet | fpga-image | host-reservation | import-image-task | import-snapshot-task | instance | internet-gateway | ipv4pool-ec2 | ipv6pool-ec2 | key-pair | launch-template | placement-group | prefix-list | natgateway | network-acl | route-table | security-group | spot-fleet-request | spot-instances-request | snapshot | subnet | traffic-mirror-filter | traffic-mirror-session | traffic-mirror-target | transit-gateway | transit-gateway-attachment | transit-gateway-route-table | volume |vpc | vpc-peering-connection | vpc-endpoint (for interface and gateway endpoints) | vpc-endpoint-service (for AWS PrivateLink) | vpc-flow-log | vpn-connection | vpn-gateway. To tag a resource after it has been created, see CreateTags.
|
|
24217
|
+
* The type of resource to tag. Currently, the resource types that support tagging on creation are: capacity-reservation | carrier-gateway | client-vpn-endpoint | customer-gateway | dedicated-host | dhcp-options | export-image-task | export-instance-task | fleet | fpga-image | host-reservation | image| import-image-task | import-snapshot-task | instance | internet-gateway | ipv4pool-ec2 | ipv6pool-ec2 | key-pair | launch-template | placement-group | prefix-list | natgateway | network-acl | route-table | security-group| snapshot | spot-fleet-request | spot-instances-request | snapshot | subnet | traffic-mirror-filter | traffic-mirror-session | traffic-mirror-target | transit-gateway | transit-gateway-attachment | transit-gateway-route-table | volume |vpc | vpc-peering-connection | vpc-endpoint (for interface and gateway endpoints) | vpc-endpoint-service (for AWS PrivateLink) | vpc-flow-log | vpn-connection | vpn-gateway. To tag a resource after it has been created, see CreateTags.
|
|
24214
24218
|
*/
|
|
24215
24219
|
ResourceType?: ResourceType;
|
|
24216
24220
|
/**
|
package/clients/kafka.d.ts
CHANGED
|
@@ -592,7 +592,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
592
592
|
NumberOfBrokerNodes?: __integer;
|
|
593
593
|
/**
|
|
594
594
|
*
|
|
595
|
-
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
|
|
595
|
+
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
|
|
596
596
|
|
|
597
597
|
*/
|
|
598
598
|
State?: ClusterState;
|
|
@@ -706,7 +706,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
706
706
|
*/
|
|
707
707
|
StepStatus?: __string;
|
|
708
708
|
}
|
|
709
|
-
export type ClusterState = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"MAINTENANCE"|"REBOOTING_BROKER"|"UPDATING"|string;
|
|
709
|
+
export type ClusterState = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"HEALING"|"MAINTENANCE"|"REBOOTING_BROKER"|"UPDATING"|string;
|
|
710
710
|
export interface CompatibleKafkaVersion {
|
|
711
711
|
/**
|
|
712
712
|
*
|
|
@@ -878,7 +878,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
878
878
|
ClusterName?: __string;
|
|
879
879
|
/**
|
|
880
880
|
*
|
|
881
|
-
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
|
|
881
|
+
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
|
|
882
882
|
|
|
883
883
|
*/
|
|
884
884
|
State?: ClusterState;
|
|
@@ -965,7 +965,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
|
|
|
965
965
|
ClusterArn?: __string;
|
|
966
966
|
/**
|
|
967
967
|
*
|
|
968
|
-
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
|
|
968
|
+
The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.
|
|
969
969
|
|
|
970
970
|
*/
|
|
971
971
|
State?: ClusterState;
|