@aws-sdk/client-appflow 3.686.0 → 3.691.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.
@@ -14,8 +14,8 @@ export declare const AggregationType: {
14
14
  export type AggregationType =
15
15
  (typeof AggregationType)[keyof typeof AggregationType];
16
16
  export interface AggregationConfig {
17
- aggregationType?: AggregationType;
18
- targetFileSize?: number;
17
+ aggregationType?: AggregationType | undefined;
18
+ targetFileSize?: number | undefined;
19
19
  }
20
20
  export declare const AmplitudeConnectorOperator: {
21
21
  readonly BETWEEN: "BETWEEN";
@@ -33,19 +33,19 @@ export interface AmplitudeSourceProperties {
33
33
  }
34
34
  export interface ApiKeyCredentials {
35
35
  apiKey: string | undefined;
36
- apiSecretKey?: string;
36
+ apiSecretKey?: string | undefined;
37
37
  }
38
38
  export interface AuthParameter {
39
- key?: string;
40
- isRequired?: boolean;
41
- label?: string;
42
- description?: string;
43
- isSensitiveField?: boolean;
44
- connectorSuppliedValues?: string[];
39
+ key?: string | undefined;
40
+ isRequired?: boolean | undefined;
41
+ label?: string | undefined;
42
+ description?: string | undefined;
43
+ isSensitiveField?: boolean | undefined;
44
+ connectorSuppliedValues?: string[] | undefined;
45
45
  }
46
46
  export interface CustomAuthConfig {
47
- customAuthenticationType?: string;
48
- authParameters?: AuthParameter[];
47
+ customAuthenticationType?: string | undefined;
48
+ authParameters?: AuthParameter[] | undefined;
49
49
  }
50
50
  export declare const OAuth2CustomPropType: {
51
51
  readonly AUTH_URL: "AUTH_URL";
@@ -54,13 +54,13 @@ export declare const OAuth2CustomPropType: {
54
54
  export type OAuth2CustomPropType =
55
55
  (typeof OAuth2CustomPropType)[keyof typeof OAuth2CustomPropType];
56
56
  export interface OAuth2CustomParameter {
57
- key?: string;
58
- isRequired?: boolean;
59
- label?: string;
60
- description?: string;
61
- isSensitiveField?: boolean;
62
- connectorSuppliedValues?: string[];
63
- type?: OAuth2CustomPropType;
57
+ key?: string | undefined;
58
+ isRequired?: boolean | undefined;
59
+ label?: string | undefined;
60
+ description?: string | undefined;
61
+ isSensitiveField?: boolean | undefined;
62
+ connectorSuppliedValues?: string[] | undefined;
63
+ type?: OAuth2CustomPropType | undefined;
64
64
  }
65
65
  export declare const OAuth2GrantType: {
66
66
  readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
@@ -70,19 +70,19 @@ export declare const OAuth2GrantType: {
70
70
  export type OAuth2GrantType =
71
71
  (typeof OAuth2GrantType)[keyof typeof OAuth2GrantType];
72
72
  export interface OAuth2Defaults {
73
- oauthScopes?: string[];
74
- tokenUrls?: string[];
75
- authCodeUrls?: string[];
76
- oauth2GrantTypesSupported?: OAuth2GrantType[];
77
- oauth2CustomProperties?: OAuth2CustomParameter[];
73
+ oauthScopes?: string[] | undefined;
74
+ tokenUrls?: string[] | undefined;
75
+ authCodeUrls?: string[] | undefined;
76
+ oauth2GrantTypesSupported?: OAuth2GrantType[] | undefined;
77
+ oauth2CustomProperties?: OAuth2CustomParameter[] | undefined;
78
78
  }
79
79
  export interface AuthenticationConfig {
80
- isBasicAuthSupported?: boolean;
81
- isApiKeyAuthSupported?: boolean;
82
- isOAuth2Supported?: boolean;
83
- isCustomAuthSupported?: boolean;
84
- oAuth2Defaults?: OAuth2Defaults;
85
- customAuthConfigs?: CustomAuthConfig[];
80
+ isBasicAuthSupported?: boolean | undefined;
81
+ isApiKeyAuthSupported?: boolean | undefined;
82
+ isOAuth2Supported?: boolean | undefined;
83
+ isCustomAuthSupported?: boolean | undefined;
84
+ oAuth2Defaults?: OAuth2Defaults | undefined;
85
+ customAuthConfigs?: CustomAuthConfig[] | undefined;
86
86
  }
87
87
  export declare const AuthenticationType: {
88
88
  readonly APIKEY: "APIKEY";
@@ -98,10 +98,10 @@ export interface BasicAuthCredentials {
98
98
  }
99
99
  export interface CancelFlowExecutionsRequest {
100
100
  flowName: string | undefined;
101
- executionIds?: string[];
101
+ executionIds?: string[] | undefined;
102
102
  }
103
103
  export interface CancelFlowExecutionsResponse {
104
- invalidExecutions?: string[];
104
+ invalidExecutions?: string[] | undefined;
105
105
  }
106
106
  export declare class InternalServerException extends __BaseException {
107
107
  readonly name: "InternalServerException";
@@ -161,10 +161,10 @@ export interface DatadogMetadata {}
161
161
  export interface DynatraceMetadata {}
162
162
  export interface EventBridgeMetadata {}
163
163
  export interface GoogleAnalyticsMetadata {
164
- oAuthScopes?: string[];
164
+ oAuthScopes?: string[] | undefined;
165
165
  }
166
166
  export interface HoneycodeMetadata {
167
- oAuthScopes?: string[];
167
+ oAuthScopes?: string[] | undefined;
168
168
  }
169
169
  export interface InforNexusMetadata {}
170
170
  export interface MarketoMetadata {}
@@ -179,54 +179,54 @@ export declare const SalesforceDataTransferApi: {
179
179
  export type SalesforceDataTransferApi =
180
180
  (typeof SalesforceDataTransferApi)[keyof typeof SalesforceDataTransferApi];
181
181
  export interface SalesforceMetadata {
182
- oAuthScopes?: string[];
183
- dataTransferApis?: SalesforceDataTransferApi[];
184
- oauth2GrantTypesSupported?: OAuth2GrantType[];
182
+ oAuthScopes?: string[] | undefined;
183
+ dataTransferApis?: SalesforceDataTransferApi[] | undefined;
184
+ oauth2GrantTypesSupported?: OAuth2GrantType[] | undefined;
185
185
  }
186
186
  export interface SAPODataMetadata {}
187
187
  export interface ServiceNowMetadata {}
188
188
  export interface SingularMetadata {}
189
189
  export interface SlackMetadata {
190
- oAuthScopes?: string[];
190
+ oAuthScopes?: string[] | undefined;
191
191
  }
192
192
  export interface SnowflakeMetadata {
193
- supportedRegions?: string[];
193
+ supportedRegions?: string[] | undefined;
194
194
  }
195
195
  export interface TrendmicroMetadata {}
196
196
  export interface UpsolverMetadata {}
197
197
  export interface VeevaMetadata {}
198
198
  export interface ZendeskMetadata {
199
- oAuthScopes?: string[];
199
+ oAuthScopes?: string[] | undefined;
200
200
  }
201
201
  export interface ConnectorMetadata {
202
- Amplitude?: AmplitudeMetadata;
203
- Datadog?: DatadogMetadata;
204
- Dynatrace?: DynatraceMetadata;
205
- GoogleAnalytics?: GoogleAnalyticsMetadata;
206
- InforNexus?: InforNexusMetadata;
207
- Marketo?: MarketoMetadata;
208
- Redshift?: RedshiftMetadata;
209
- S3?: S3Metadata;
210
- Salesforce?: SalesforceMetadata;
211
- ServiceNow?: ServiceNowMetadata;
212
- Singular?: SingularMetadata;
213
- Slack?: SlackMetadata;
214
- Snowflake?: SnowflakeMetadata;
215
- Trendmicro?: TrendmicroMetadata;
216
- Veeva?: VeevaMetadata;
217
- Zendesk?: ZendeskMetadata;
218
- EventBridge?: EventBridgeMetadata;
219
- Upsolver?: UpsolverMetadata;
220
- CustomerProfiles?: CustomerProfilesMetadata;
221
- Honeycode?: HoneycodeMetadata;
222
- SAPOData?: SAPODataMetadata;
223
- Pardot?: PardotMetadata;
202
+ Amplitude?: AmplitudeMetadata | undefined;
203
+ Datadog?: DatadogMetadata | undefined;
204
+ Dynatrace?: DynatraceMetadata | undefined;
205
+ GoogleAnalytics?: GoogleAnalyticsMetadata | undefined;
206
+ InforNexus?: InforNexusMetadata | undefined;
207
+ Marketo?: MarketoMetadata | undefined;
208
+ Redshift?: RedshiftMetadata | undefined;
209
+ S3?: S3Metadata | undefined;
210
+ Salesforce?: SalesforceMetadata | undefined;
211
+ ServiceNow?: ServiceNowMetadata | undefined;
212
+ Singular?: SingularMetadata | undefined;
213
+ Slack?: SlackMetadata | undefined;
214
+ Snowflake?: SnowflakeMetadata | undefined;
215
+ Trendmicro?: TrendmicroMetadata | undefined;
216
+ Veeva?: VeevaMetadata | undefined;
217
+ Zendesk?: ZendeskMetadata | undefined;
218
+ EventBridge?: EventBridgeMetadata | undefined;
219
+ Upsolver?: UpsolverMetadata | undefined;
220
+ CustomerProfiles?: CustomerProfilesMetadata | undefined;
221
+ Honeycode?: HoneycodeMetadata | undefined;
222
+ SAPOData?: SAPODataMetadata | undefined;
223
+ Pardot?: PardotMetadata | undefined;
224
224
  }
225
225
  export interface LambdaConnectorProvisioningConfig {
226
226
  lambdaArn: string | undefined;
227
227
  }
228
228
  export interface ConnectorProvisioningConfig {
229
- lambda?: LambdaConnectorProvisioningConfig;
229
+ lambda?: LambdaConnectorProvisioningConfig | undefined;
230
230
  }
231
231
  export declare const ConnectorProvisioningType: {
232
232
  readonly LAMBDA: "LAMBDA";
@@ -234,13 +234,13 @@ export declare const ConnectorProvisioningType: {
234
234
  export type ConnectorProvisioningType =
235
235
  (typeof ConnectorProvisioningType)[keyof typeof ConnectorProvisioningType];
236
236
  export interface ConnectorRuntimeSetting {
237
- key?: string;
238
- dataType?: string;
239
- isRequired?: boolean;
240
- label?: string;
241
- description?: string;
242
- scope?: string;
243
- connectorSuppliedValueOptions?: string[];
237
+ key?: string | undefined;
238
+ dataType?: string | undefined;
239
+ isRequired?: boolean | undefined;
240
+ label?: string | undefined;
241
+ description?: string | undefined;
242
+ scope?: string | undefined;
243
+ connectorSuppliedValueOptions?: string[] | undefined;
244
244
  }
245
245
  export declare const ConnectorType: {
246
246
  readonly AMPLITUDE: "Amplitude";
@@ -277,8 +277,8 @@ export declare const DataTransferApiType: {
277
277
  export type DataTransferApiType =
278
278
  (typeof DataTransferApiType)[keyof typeof DataTransferApiType];
279
279
  export interface DataTransferApi {
280
- Name?: string;
281
- Type?: DataTransferApiType;
280
+ Name?: string | undefined;
281
+ Type?: DataTransferApiType | undefined;
282
282
  }
283
283
  export declare const SupportedDataTransferType: {
284
284
  readonly FILE: "FILE";
@@ -335,70 +335,70 @@ export declare const WriteOperationType: {
335
335
  export type WriteOperationType =
336
336
  (typeof WriteOperationType)[keyof typeof WriteOperationType];
337
337
  export interface ConnectorConfiguration {
338
- canUseAsSource?: boolean;
339
- canUseAsDestination?: boolean;
340
- supportedDestinationConnectors?: ConnectorType[];
341
- supportedSchedulingFrequencies?: ScheduleFrequencyType[];
342
- isPrivateLinkEnabled?: boolean;
343
- isPrivateLinkEndpointUrlRequired?: boolean;
344
- supportedTriggerTypes?: TriggerType[];
345
- connectorMetadata?: ConnectorMetadata;
346
- connectorType?: ConnectorType;
347
- connectorLabel?: string;
348
- connectorDescription?: string;
349
- connectorOwner?: string;
350
- connectorName?: string;
351
- connectorVersion?: string;
352
- connectorArn?: string;
353
- connectorModes?: string[];
354
- authenticationConfig?: AuthenticationConfig;
355
- connectorRuntimeSettings?: ConnectorRuntimeSetting[];
356
- supportedApiVersions?: string[];
357
- supportedOperators?: Operators[];
358
- supportedWriteOperations?: WriteOperationType[];
359
- connectorProvisioningType?: ConnectorProvisioningType;
360
- connectorProvisioningConfig?: ConnectorProvisioningConfig;
361
- logoURL?: string;
362
- registeredAt?: Date;
363
- registeredBy?: string;
364
- supportedDataTransferTypes?: SupportedDataTransferType[];
365
- supportedDataTransferApis?: DataTransferApi[];
338
+ canUseAsSource?: boolean | undefined;
339
+ canUseAsDestination?: boolean | undefined;
340
+ supportedDestinationConnectors?: ConnectorType[] | undefined;
341
+ supportedSchedulingFrequencies?: ScheduleFrequencyType[] | undefined;
342
+ isPrivateLinkEnabled?: boolean | undefined;
343
+ isPrivateLinkEndpointUrlRequired?: boolean | undefined;
344
+ supportedTriggerTypes?: TriggerType[] | undefined;
345
+ connectorMetadata?: ConnectorMetadata | undefined;
346
+ connectorType?: ConnectorType | undefined;
347
+ connectorLabel?: string | undefined;
348
+ connectorDescription?: string | undefined;
349
+ connectorOwner?: string | undefined;
350
+ connectorName?: string | undefined;
351
+ connectorVersion?: string | undefined;
352
+ connectorArn?: string | undefined;
353
+ connectorModes?: string[] | undefined;
354
+ authenticationConfig?: AuthenticationConfig | undefined;
355
+ connectorRuntimeSettings?: ConnectorRuntimeSetting[] | undefined;
356
+ supportedApiVersions?: string[] | undefined;
357
+ supportedOperators?: Operators[] | undefined;
358
+ supportedWriteOperations?: WriteOperationType[] | undefined;
359
+ connectorProvisioningType?: ConnectorProvisioningType | undefined;
360
+ connectorProvisioningConfig?: ConnectorProvisioningConfig | undefined;
361
+ logoURL?: string | undefined;
362
+ registeredAt?: Date | undefined;
363
+ registeredBy?: string | undefined;
364
+ supportedDataTransferTypes?: SupportedDataTransferType[] | undefined;
365
+ supportedDataTransferApis?: DataTransferApi[] | undefined;
366
366
  }
367
367
  export interface ConnectorDetail {
368
- connectorDescription?: string;
369
- connectorName?: string;
370
- connectorOwner?: string;
371
- connectorVersion?: string;
372
- applicationType?: string;
373
- connectorType?: ConnectorType;
374
- connectorLabel?: string;
375
- registeredAt?: Date;
376
- registeredBy?: string;
377
- connectorProvisioningType?: ConnectorProvisioningType;
378
- connectorModes?: string[];
379
- supportedDataTransferTypes?: SupportedDataTransferType[];
368
+ connectorDescription?: string | undefined;
369
+ connectorName?: string | undefined;
370
+ connectorOwner?: string | undefined;
371
+ connectorVersion?: string | undefined;
372
+ applicationType?: string | undefined;
373
+ connectorType?: ConnectorType | undefined;
374
+ connectorLabel?: string | undefined;
375
+ registeredAt?: Date | undefined;
376
+ registeredBy?: string | undefined;
377
+ connectorProvisioningType?: ConnectorProvisioningType | undefined;
378
+ connectorModes?: string[] | undefined;
379
+ supportedDataTransferTypes?: SupportedDataTransferType[] | undefined;
380
380
  }
381
381
  export interface ConnectorEntity {
382
382
  name: string | undefined;
383
- label?: string;
384
- hasNestedEntities?: boolean;
383
+ label?: string | undefined;
384
+ hasNestedEntities?: boolean | undefined;
385
385
  }
386
386
  export interface DestinationFieldProperties {
387
- isCreatable?: boolean;
388
- isNullable?: boolean;
389
- isUpsertable?: boolean;
390
- isUpdatable?: boolean;
391
- isDefaultedOnCreate?: boolean;
392
- supportedWriteOperations?: WriteOperationType[];
387
+ isCreatable?: boolean | undefined;
388
+ isNullable?: boolean | undefined;
389
+ isUpsertable?: boolean | undefined;
390
+ isUpdatable?: boolean | undefined;
391
+ isDefaultedOnCreate?: boolean | undefined;
392
+ supportedWriteOperations?: WriteOperationType[] | undefined;
393
393
  }
394
394
  export interface SourceFieldProperties {
395
- isRetrievable?: boolean;
396
- isQueryable?: boolean;
397
- isTimestampFieldForIncrementalQueries?: boolean;
395
+ isRetrievable?: boolean | undefined;
396
+ isQueryable?: boolean | undefined;
397
+ isTimestampFieldForIncrementalQueries?: boolean | undefined;
398
398
  }
399
399
  export interface Range {
400
- maximum?: number;
401
- minimum?: number;
400
+ maximum?: number | undefined;
401
+ minimum?: number | undefined;
402
402
  }
403
403
  export declare const Operator: {
404
404
  readonly ADDITION: "ADDITION";
@@ -427,31 +427,31 @@ export type Operator = (typeof Operator)[keyof typeof Operator];
427
427
  export interface FieldTypeDetails {
428
428
  fieldType: string | undefined;
429
429
  filterOperators: Operator[] | undefined;
430
- supportedValues?: string[];
431
- valueRegexPattern?: string;
432
- supportedDateFormat?: string;
433
- fieldValueRange?: Range;
434
- fieldLengthRange?: Range;
430
+ supportedValues?: string[] | undefined;
431
+ valueRegexPattern?: string | undefined;
432
+ supportedDateFormat?: string | undefined;
433
+ fieldValueRange?: Range | undefined;
434
+ fieldLengthRange?: Range | undefined;
435
435
  }
436
436
  export interface SupportedFieldTypeDetails {
437
437
  v1: FieldTypeDetails | undefined;
438
438
  }
439
439
  export interface ConnectorEntityField {
440
440
  identifier: string | undefined;
441
- parentIdentifier?: string;
442
- label?: string;
443
- isPrimaryKey?: boolean;
444
- defaultValue?: string;
445
- isDeprecated?: boolean;
446
- supportedFieldTypeDetails?: SupportedFieldTypeDetails;
447
- description?: string;
448
- sourceProperties?: SourceFieldProperties;
449
- destinationProperties?: DestinationFieldProperties;
450
- customProperties?: Record<string, string>;
441
+ parentIdentifier?: string | undefined;
442
+ label?: string | undefined;
443
+ isPrimaryKey?: boolean | undefined;
444
+ defaultValue?: string | undefined;
445
+ isDeprecated?: boolean | undefined;
446
+ supportedFieldTypeDetails?: SupportedFieldTypeDetails | undefined;
447
+ description?: string | undefined;
448
+ sourceProperties?: SourceFieldProperties | undefined;
449
+ destinationProperties?: DestinationFieldProperties | undefined;
450
+ customProperties?: Record<string, string> | undefined;
451
451
  }
452
452
  export interface ConnectorOAuthRequest {
453
- authCode?: string;
454
- redirectUri?: string;
453
+ authCode?: string | undefined;
454
+ redirectUri?: string | undefined;
455
455
  }
456
456
  export declare const DatadogConnectorOperator: {
457
457
  readonly ADDITION: "ADDITION";
@@ -756,32 +756,32 @@ export declare const ZendeskConnectorOperator: {
756
756
  export type ZendeskConnectorOperator =
757
757
  (typeof ZendeskConnectorOperator)[keyof typeof ZendeskConnectorOperator];
758
758
  export interface ConnectorOperator {
759
- Amplitude?: AmplitudeConnectorOperator;
760
- Datadog?: DatadogConnectorOperator;
761
- Dynatrace?: DynatraceConnectorOperator;
762
- GoogleAnalytics?: GoogleAnalyticsConnectorOperator;
763
- InforNexus?: InforNexusConnectorOperator;
764
- Marketo?: MarketoConnectorOperator;
765
- S3?: S3ConnectorOperator;
766
- Salesforce?: SalesforceConnectorOperator;
767
- ServiceNow?: ServiceNowConnectorOperator;
768
- Singular?: SingularConnectorOperator;
769
- Slack?: SlackConnectorOperator;
770
- Trendmicro?: TrendmicroConnectorOperator;
771
- Veeva?: VeevaConnectorOperator;
772
- Zendesk?: ZendeskConnectorOperator;
773
- SAPOData?: SAPODataConnectorOperator;
774
- CustomConnector?: Operator;
775
- Pardot?: PardotConnectorOperator;
759
+ Amplitude?: AmplitudeConnectorOperator | undefined;
760
+ Datadog?: DatadogConnectorOperator | undefined;
761
+ Dynatrace?: DynatraceConnectorOperator | undefined;
762
+ GoogleAnalytics?: GoogleAnalyticsConnectorOperator | undefined;
763
+ InforNexus?: InforNexusConnectorOperator | undefined;
764
+ Marketo?: MarketoConnectorOperator | undefined;
765
+ S3?: S3ConnectorOperator | undefined;
766
+ Salesforce?: SalesforceConnectorOperator | undefined;
767
+ ServiceNow?: ServiceNowConnectorOperator | undefined;
768
+ Singular?: SingularConnectorOperator | undefined;
769
+ Slack?: SlackConnectorOperator | undefined;
770
+ Trendmicro?: TrendmicroConnectorOperator | undefined;
771
+ Veeva?: VeevaConnectorOperator | undefined;
772
+ Zendesk?: ZendeskConnectorOperator | undefined;
773
+ SAPOData?: SAPODataConnectorOperator | undefined;
774
+ CustomConnector?: Operator | undefined;
775
+ Pardot?: PardotConnectorOperator | undefined;
776
776
  }
777
777
  export interface OAuth2Properties {
778
778
  tokenUrl: string | undefined;
779
779
  oAuth2GrantType: OAuth2GrantType | undefined;
780
- tokenUrlCustomProperties?: Record<string, string>;
780
+ tokenUrlCustomProperties?: Record<string, string> | undefined;
781
781
  }
782
782
  export interface CustomConnectorProfileProperties {
783
- profileProperties?: Record<string, string>;
784
- oAuth2Properties?: OAuth2Properties;
783
+ profileProperties?: Record<string, string> | undefined;
784
+ oAuth2Properties?: OAuth2Properties | undefined;
785
785
  }
786
786
  export interface DatadogConnectorProfileProperties {
787
787
  instanceUrl: string | undefined;
@@ -798,25 +798,25 @@ export interface MarketoConnectorProfileProperties {
798
798
  instanceUrl: string | undefined;
799
799
  }
800
800
  export interface PardotConnectorProfileProperties {
801
- instanceUrl?: string;
802
- isSandboxEnvironment?: boolean;
803
- businessUnitId?: string;
801
+ instanceUrl?: string | undefined;
802
+ isSandboxEnvironment?: boolean | undefined;
803
+ businessUnitId?: string | undefined;
804
804
  }
805
805
  export interface RedshiftConnectorProfileProperties {
806
- databaseUrl?: string;
806
+ databaseUrl?: string | undefined;
807
807
  bucketName: string | undefined;
808
- bucketPrefix?: string;
808
+ bucketPrefix?: string | undefined;
809
809
  roleArn: string | undefined;
810
- dataApiRoleArn?: string;
811
- isRedshiftServerless?: boolean;
812
- clusterIdentifier?: string;
813
- workgroupName?: string;
814
- databaseName?: string;
810
+ dataApiRoleArn?: string | undefined;
811
+ isRedshiftServerless?: boolean | undefined;
812
+ clusterIdentifier?: string | undefined;
813
+ workgroupName?: string | undefined;
814
+ databaseName?: string | undefined;
815
815
  }
816
816
  export interface SalesforceConnectorProfileProperties {
817
- instanceUrl?: string;
818
- isSandboxEnvironment?: boolean;
819
- usePrivateLinkForMetadataAndAuthorization?: boolean;
817
+ instanceUrl?: string | undefined;
818
+ isSandboxEnvironment?: boolean | undefined;
819
+ usePrivateLinkForMetadataAndAuthorization?: boolean | undefined;
820
820
  }
821
821
  export interface OAuthProperties {
822
822
  tokenUrl: string | undefined;
@@ -828,10 +828,10 @@ export interface SAPODataConnectorProfileProperties {
828
828
  applicationServicePath: string | undefined;
829
829
  portNumber: number | undefined;
830
830
  clientNumber: string | undefined;
831
- logonLanguage?: string;
832
- privateLinkServiceName?: string;
833
- oAuthProperties?: OAuthProperties;
834
- disableSSO?: boolean;
831
+ logonLanguage?: string | undefined;
832
+ privateLinkServiceName?: string | undefined;
833
+ oAuthProperties?: OAuthProperties | undefined;
834
+ disableSSO?: boolean | undefined;
835
835
  }
836
836
  export interface ServiceNowConnectorProfileProperties {
837
837
  instanceUrl: string | undefined;
@@ -844,10 +844,10 @@ export interface SnowflakeConnectorProfileProperties {
844
844
  warehouse: string | undefined;
845
845
  stage: string | undefined;
846
846
  bucketName: string | undefined;
847
- bucketPrefix?: string;
848
- privateLinkServiceName?: string;
849
- accountName?: string;
850
- region?: string;
847
+ bucketPrefix?: string | undefined;
848
+ privateLinkServiceName?: string | undefined;
849
+ accountName?: string | undefined;
850
+ region?: string | undefined;
851
851
  }
852
852
  export interface TrendmicroConnectorProfileProperties {}
853
853
  export interface VeevaConnectorProfileProperties {
@@ -857,25 +857,25 @@ export interface ZendeskConnectorProfileProperties {
857
857
  instanceUrl: string | undefined;
858
858
  }
859
859
  export interface ConnectorProfileProperties {
860
- Amplitude?: AmplitudeConnectorProfileProperties;
861
- Datadog?: DatadogConnectorProfileProperties;
862
- Dynatrace?: DynatraceConnectorProfileProperties;
863
- GoogleAnalytics?: GoogleAnalyticsConnectorProfileProperties;
864
- Honeycode?: HoneycodeConnectorProfileProperties;
865
- InforNexus?: InforNexusConnectorProfileProperties;
866
- Marketo?: MarketoConnectorProfileProperties;
867
- Redshift?: RedshiftConnectorProfileProperties;
868
- Salesforce?: SalesforceConnectorProfileProperties;
869
- ServiceNow?: ServiceNowConnectorProfileProperties;
870
- Singular?: SingularConnectorProfileProperties;
871
- Slack?: SlackConnectorProfileProperties;
872
- Snowflake?: SnowflakeConnectorProfileProperties;
873
- Trendmicro?: TrendmicroConnectorProfileProperties;
874
- Veeva?: VeevaConnectorProfileProperties;
875
- Zendesk?: ZendeskConnectorProfileProperties;
876
- SAPOData?: SAPODataConnectorProfileProperties;
877
- CustomConnector?: CustomConnectorProfileProperties;
878
- Pardot?: PardotConnectorProfileProperties;
860
+ Amplitude?: AmplitudeConnectorProfileProperties | undefined;
861
+ Datadog?: DatadogConnectorProfileProperties | undefined;
862
+ Dynatrace?: DynatraceConnectorProfileProperties | undefined;
863
+ GoogleAnalytics?: GoogleAnalyticsConnectorProfileProperties | undefined;
864
+ Honeycode?: HoneycodeConnectorProfileProperties | undefined;
865
+ InforNexus?: InforNexusConnectorProfileProperties | undefined;
866
+ Marketo?: MarketoConnectorProfileProperties | undefined;
867
+ Redshift?: RedshiftConnectorProfileProperties | undefined;
868
+ Salesforce?: SalesforceConnectorProfileProperties | undefined;
869
+ ServiceNow?: ServiceNowConnectorProfileProperties | undefined;
870
+ Singular?: SingularConnectorProfileProperties | undefined;
871
+ Slack?: SlackConnectorProfileProperties | undefined;
872
+ Snowflake?: SnowflakeConnectorProfileProperties | undefined;
873
+ Trendmicro?: TrendmicroConnectorProfileProperties | undefined;
874
+ Veeva?: VeevaConnectorProfileProperties | undefined;
875
+ Zendesk?: ZendeskConnectorProfileProperties | undefined;
876
+ SAPOData?: SAPODataConnectorProfileProperties | undefined;
877
+ CustomConnector?: CustomConnectorProfileProperties | undefined;
878
+ Pardot?: PardotConnectorProfileProperties | undefined;
879
879
  }
880
880
  export declare const PrivateConnectionProvisioningFailureCause: {
881
881
  readonly ACCESS_DENIED: "ACCESS_DENIED";
@@ -894,39 +894,41 @@ export declare const PrivateConnectionProvisioningStatus: {
894
894
  export type PrivateConnectionProvisioningStatus =
895
895
  (typeof PrivateConnectionProvisioningStatus)[keyof typeof PrivateConnectionProvisioningStatus];
896
896
  export interface PrivateConnectionProvisioningState {
897
- status?: PrivateConnectionProvisioningStatus;
898
- failureMessage?: string;
899
- failureCause?: PrivateConnectionProvisioningFailureCause;
897
+ status?: PrivateConnectionProvisioningStatus | undefined;
898
+ failureMessage?: string | undefined;
899
+ failureCause?: PrivateConnectionProvisioningFailureCause | undefined;
900
900
  }
901
901
  export interface ConnectorProfile {
902
- connectorProfileArn?: string;
903
- connectorProfileName?: string;
904
- connectorType?: ConnectorType;
905
- connectorLabel?: string;
906
- connectionMode?: ConnectionMode;
907
- credentialsArn?: string;
908
- connectorProfileProperties?: ConnectorProfileProperties;
909
- createdAt?: Date;
910
- lastUpdatedAt?: Date;
911
- privateConnectionProvisioningState?: PrivateConnectionProvisioningState;
902
+ connectorProfileArn?: string | undefined;
903
+ connectorProfileName?: string | undefined;
904
+ connectorType?: ConnectorType | undefined;
905
+ connectorLabel?: string | undefined;
906
+ connectionMode?: ConnectionMode | undefined;
907
+ credentialsArn?: string | undefined;
908
+ connectorProfileProperties?: ConnectorProfileProperties | undefined;
909
+ createdAt?: Date | undefined;
910
+ lastUpdatedAt?: Date | undefined;
911
+ privateConnectionProvisioningState?:
912
+ | PrivateConnectionProvisioningState
913
+ | undefined;
912
914
  }
913
915
  export interface CustomAuthCredentials {
914
916
  customAuthenticationType: string | undefined;
915
- credentialsMap?: Record<string, string>;
917
+ credentialsMap?: Record<string, string> | undefined;
916
918
  }
917
919
  export interface OAuth2Credentials {
918
- clientId?: string;
919
- clientSecret?: string;
920
- accessToken?: string;
921
- refreshToken?: string;
922
- oAuthRequest?: ConnectorOAuthRequest;
920
+ clientId?: string | undefined;
921
+ clientSecret?: string | undefined;
922
+ accessToken?: string | undefined;
923
+ refreshToken?: string | undefined;
924
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
923
925
  }
924
926
  export interface CustomConnectorProfileCredentials {
925
927
  authenticationType: AuthenticationType | undefined;
926
- basic?: BasicAuthCredentials;
927
- oauth2?: OAuth2Credentials;
928
- apiKey?: ApiKeyCredentials;
929
- custom?: CustomAuthCredentials;
928
+ basic?: BasicAuthCredentials | undefined;
929
+ oauth2?: OAuth2Credentials | undefined;
930
+ apiKey?: ApiKeyCredentials | undefined;
931
+ custom?: CustomAuthCredentials | undefined;
930
932
  }
931
933
  export interface DatadogConnectorProfileCredentials {
932
934
  apiKey: string | undefined;
@@ -938,14 +940,14 @@ export interface DynatraceConnectorProfileCredentials {
938
940
  export interface GoogleAnalyticsConnectorProfileCredentials {
939
941
  clientId: string | undefined;
940
942
  clientSecret: string | undefined;
941
- accessToken?: string;
942
- refreshToken?: string;
943
- oAuthRequest?: ConnectorOAuthRequest;
943
+ accessToken?: string | undefined;
944
+ refreshToken?: string | undefined;
945
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
944
946
  }
945
947
  export interface HoneycodeConnectorProfileCredentials {
946
- accessToken?: string;
947
- refreshToken?: string;
948
- oAuthRequest?: ConnectorOAuthRequest;
948
+ accessToken?: string | undefined;
949
+ refreshToken?: string | undefined;
950
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
949
951
  }
950
952
  export interface InforNexusConnectorProfileCredentials {
951
953
  accessKeyId: string | undefined;
@@ -956,42 +958,42 @@ export interface InforNexusConnectorProfileCredentials {
956
958
  export interface MarketoConnectorProfileCredentials {
957
959
  clientId: string | undefined;
958
960
  clientSecret: string | undefined;
959
- accessToken?: string;
960
- oAuthRequest?: ConnectorOAuthRequest;
961
+ accessToken?: string | undefined;
962
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
961
963
  }
962
964
  export interface PardotConnectorProfileCredentials {
963
- accessToken?: string;
964
- refreshToken?: string;
965
- oAuthRequest?: ConnectorOAuthRequest;
966
- clientCredentialsArn?: string;
965
+ accessToken?: string | undefined;
966
+ refreshToken?: string | undefined;
967
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
968
+ clientCredentialsArn?: string | undefined;
967
969
  }
968
970
  export interface RedshiftConnectorProfileCredentials {
969
- username?: string;
970
- password?: string;
971
+ username?: string | undefined;
972
+ password?: string | undefined;
971
973
  }
972
974
  export interface SalesforceConnectorProfileCredentials {
973
- accessToken?: string;
974
- refreshToken?: string;
975
- oAuthRequest?: ConnectorOAuthRequest;
976
- clientCredentialsArn?: string;
977
- oAuth2GrantType?: OAuth2GrantType;
978
- jwtToken?: string;
975
+ accessToken?: string | undefined;
976
+ refreshToken?: string | undefined;
977
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
978
+ clientCredentialsArn?: string | undefined;
979
+ oAuth2GrantType?: OAuth2GrantType | undefined;
980
+ jwtToken?: string | undefined;
979
981
  }
980
982
  export interface OAuthCredentials {
981
983
  clientId: string | undefined;
982
984
  clientSecret: string | undefined;
983
- accessToken?: string;
984
- refreshToken?: string;
985
- oAuthRequest?: ConnectorOAuthRequest;
985
+ accessToken?: string | undefined;
986
+ refreshToken?: string | undefined;
987
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
986
988
  }
987
989
  export interface SAPODataConnectorProfileCredentials {
988
- basicAuthCredentials?: BasicAuthCredentials;
989
- oAuthCredentials?: OAuthCredentials;
990
+ basicAuthCredentials?: BasicAuthCredentials | undefined;
991
+ oAuthCredentials?: OAuthCredentials | undefined;
990
992
  }
991
993
  export interface ServiceNowConnectorProfileCredentials {
992
- username?: string;
993
- password?: string;
994
- oAuth2Credentials?: OAuth2Credentials;
994
+ username?: string | undefined;
995
+ password?: string | undefined;
996
+ oAuth2Credentials?: OAuth2Credentials | undefined;
995
997
  }
996
998
  export interface SingularConnectorProfileCredentials {
997
999
  apiKey: string | undefined;
@@ -999,8 +1001,8 @@ export interface SingularConnectorProfileCredentials {
999
1001
  export interface SlackConnectorProfileCredentials {
1000
1002
  clientId: string | undefined;
1001
1003
  clientSecret: string | undefined;
1002
- accessToken?: string;
1003
- oAuthRequest?: ConnectorOAuthRequest;
1004
+ accessToken?: string | undefined;
1005
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
1004
1006
  }
1005
1007
  export interface SnowflakeConnectorProfileCredentials {
1006
1008
  username: string | undefined;
@@ -1016,33 +1018,33 @@ export interface VeevaConnectorProfileCredentials {
1016
1018
  export interface ZendeskConnectorProfileCredentials {
1017
1019
  clientId: string | undefined;
1018
1020
  clientSecret: string | undefined;
1019
- accessToken?: string;
1020
- oAuthRequest?: ConnectorOAuthRequest;
1021
+ accessToken?: string | undefined;
1022
+ oAuthRequest?: ConnectorOAuthRequest | undefined;
1021
1023
  }
1022
1024
  export interface ConnectorProfileCredentials {
1023
- Amplitude?: AmplitudeConnectorProfileCredentials;
1024
- Datadog?: DatadogConnectorProfileCredentials;
1025
- Dynatrace?: DynatraceConnectorProfileCredentials;
1026
- GoogleAnalytics?: GoogleAnalyticsConnectorProfileCredentials;
1027
- Honeycode?: HoneycodeConnectorProfileCredentials;
1028
- InforNexus?: InforNexusConnectorProfileCredentials;
1029
- Marketo?: MarketoConnectorProfileCredentials;
1030
- Redshift?: RedshiftConnectorProfileCredentials;
1031
- Salesforce?: SalesforceConnectorProfileCredentials;
1032
- ServiceNow?: ServiceNowConnectorProfileCredentials;
1033
- Singular?: SingularConnectorProfileCredentials;
1034
- Slack?: SlackConnectorProfileCredentials;
1035
- Snowflake?: SnowflakeConnectorProfileCredentials;
1036
- Trendmicro?: TrendmicroConnectorProfileCredentials;
1037
- Veeva?: VeevaConnectorProfileCredentials;
1038
- Zendesk?: ZendeskConnectorProfileCredentials;
1039
- SAPOData?: SAPODataConnectorProfileCredentials;
1040
- CustomConnector?: CustomConnectorProfileCredentials;
1041
- Pardot?: PardotConnectorProfileCredentials;
1025
+ Amplitude?: AmplitudeConnectorProfileCredentials | undefined;
1026
+ Datadog?: DatadogConnectorProfileCredentials | undefined;
1027
+ Dynatrace?: DynatraceConnectorProfileCredentials | undefined;
1028
+ GoogleAnalytics?: GoogleAnalyticsConnectorProfileCredentials | undefined;
1029
+ Honeycode?: HoneycodeConnectorProfileCredentials | undefined;
1030
+ InforNexus?: InforNexusConnectorProfileCredentials | undefined;
1031
+ Marketo?: MarketoConnectorProfileCredentials | undefined;
1032
+ Redshift?: RedshiftConnectorProfileCredentials | undefined;
1033
+ Salesforce?: SalesforceConnectorProfileCredentials | undefined;
1034
+ ServiceNow?: ServiceNowConnectorProfileCredentials | undefined;
1035
+ Singular?: SingularConnectorProfileCredentials | undefined;
1036
+ Slack?: SlackConnectorProfileCredentials | undefined;
1037
+ Snowflake?: SnowflakeConnectorProfileCredentials | undefined;
1038
+ Trendmicro?: TrendmicroConnectorProfileCredentials | undefined;
1039
+ Veeva?: VeevaConnectorProfileCredentials | undefined;
1040
+ Zendesk?: ZendeskConnectorProfileCredentials | undefined;
1041
+ SAPOData?: SAPODataConnectorProfileCredentials | undefined;
1042
+ CustomConnector?: CustomConnectorProfileCredentials | undefined;
1043
+ Pardot?: PardotConnectorProfileCredentials | undefined;
1042
1044
  }
1043
1045
  export interface ConnectorProfileConfig {
1044
1046
  connectorProfileProperties: ConnectorProfileProperties | undefined;
1045
- connectorProfileCredentials?: ConnectorProfileCredentials;
1047
+ connectorProfileCredentials?: ConnectorProfileCredentials | undefined;
1046
1048
  }
1047
1049
  export declare class ConnectorServerException extends __BaseException {
1048
1050
  readonly name: "ConnectorServerException";
@@ -1053,15 +1055,15 @@ export declare class ConnectorServerException extends __BaseException {
1053
1055
  }
1054
1056
  export interface CreateConnectorProfileRequest {
1055
1057
  connectorProfileName: string | undefined;
1056
- kmsArn?: string;
1058
+ kmsArn?: string | undefined;
1057
1059
  connectorType: ConnectorType | undefined;
1058
- connectorLabel?: string;
1060
+ connectorLabel?: string | undefined;
1059
1061
  connectionMode: ConnectionMode | undefined;
1060
1062
  connectorProfileConfig: ConnectorProfileConfig | undefined;
1061
- clientToken?: string;
1063
+ clientToken?: string | undefined;
1062
1064
  }
1063
1065
  export interface CreateConnectorProfileResponse {
1064
- connectorProfileArn?: string;
1066
+ connectorProfileArn?: string | undefined;
1065
1067
  }
1066
1068
  export declare class ServiceQuotaExceededException extends __BaseException {
1067
1069
  readonly name: "ServiceQuotaExceededException";
@@ -1071,39 +1073,39 @@ export declare class ServiceQuotaExceededException extends __BaseException {
1071
1073
  );
1072
1074
  }
1073
1075
  export interface ErrorHandlingConfig {
1074
- failOnFirstDestinationError?: boolean;
1075
- bucketPrefix?: string;
1076
- bucketName?: string;
1076
+ failOnFirstDestinationError?: boolean | undefined;
1077
+ bucketPrefix?: string | undefined;
1078
+ bucketName?: string | undefined;
1077
1079
  }
1078
1080
  export interface CustomConnectorDestinationProperties {
1079
1081
  entityName: string | undefined;
1080
- errorHandlingConfig?: ErrorHandlingConfig;
1081
- writeOperationType?: WriteOperationType;
1082
- idFieldNames?: string[];
1083
- customProperties?: Record<string, string>;
1082
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1083
+ writeOperationType?: WriteOperationType | undefined;
1084
+ idFieldNames?: string[] | undefined;
1085
+ customProperties?: Record<string, string> | undefined;
1084
1086
  }
1085
1087
  export interface CustomerProfilesDestinationProperties {
1086
1088
  domainName: string | undefined;
1087
- objectTypeName?: string;
1089
+ objectTypeName?: string | undefined;
1088
1090
  }
1089
1091
  export interface EventBridgeDestinationProperties {
1090
1092
  object: string | undefined;
1091
- errorHandlingConfig?: ErrorHandlingConfig;
1093
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1092
1094
  }
1093
1095
  export interface HoneycodeDestinationProperties {
1094
1096
  object: string | undefined;
1095
- errorHandlingConfig?: ErrorHandlingConfig;
1097
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1096
1098
  }
1097
1099
  export interface LookoutMetricsDestinationProperties {}
1098
1100
  export interface MarketoDestinationProperties {
1099
1101
  object: string | undefined;
1100
- errorHandlingConfig?: ErrorHandlingConfig;
1102
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1101
1103
  }
1102
1104
  export interface RedshiftDestinationProperties {
1103
1105
  object: string | undefined;
1104
1106
  intermediateBucketName: string | undefined;
1105
- bucketPrefix?: string;
1106
- errorHandlingConfig?: ErrorHandlingConfig;
1107
+ bucketPrefix?: string | undefined;
1108
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1107
1109
  }
1108
1110
  export declare const FileType: {
1109
1111
  readonly CSV: "CSV";
@@ -1131,80 +1133,80 @@ export declare const PrefixType: {
1131
1133
  };
1132
1134
  export type PrefixType = (typeof PrefixType)[keyof typeof PrefixType];
1133
1135
  export interface PrefixConfig {
1134
- prefixType?: PrefixType;
1135
- prefixFormat?: PrefixFormat;
1136
- pathPrefixHierarchy?: PathPrefix[];
1136
+ prefixType?: PrefixType | undefined;
1137
+ prefixFormat?: PrefixFormat | undefined;
1138
+ pathPrefixHierarchy?: PathPrefix[] | undefined;
1137
1139
  }
1138
1140
  export interface S3OutputFormatConfig {
1139
- fileType?: FileType;
1140
- prefixConfig?: PrefixConfig;
1141
- aggregationConfig?: AggregationConfig;
1142
- preserveSourceDataTyping?: boolean;
1141
+ fileType?: FileType | undefined;
1142
+ prefixConfig?: PrefixConfig | undefined;
1143
+ aggregationConfig?: AggregationConfig | undefined;
1144
+ preserveSourceDataTyping?: boolean | undefined;
1143
1145
  }
1144
1146
  export interface S3DestinationProperties {
1145
1147
  bucketName: string | undefined;
1146
- bucketPrefix?: string;
1147
- s3OutputFormatConfig?: S3OutputFormatConfig;
1148
+ bucketPrefix?: string | undefined;
1149
+ s3OutputFormatConfig?: S3OutputFormatConfig | undefined;
1148
1150
  }
1149
1151
  export interface SalesforceDestinationProperties {
1150
1152
  object: string | undefined;
1151
- idFieldNames?: string[];
1152
- errorHandlingConfig?: ErrorHandlingConfig;
1153
- writeOperationType?: WriteOperationType;
1154
- dataTransferApi?: SalesforceDataTransferApi;
1153
+ idFieldNames?: string[] | undefined;
1154
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1155
+ writeOperationType?: WriteOperationType | undefined;
1156
+ dataTransferApi?: SalesforceDataTransferApi | undefined;
1155
1157
  }
1156
1158
  export interface SuccessResponseHandlingConfig {
1157
- bucketPrefix?: string;
1158
- bucketName?: string;
1159
+ bucketPrefix?: string | undefined;
1160
+ bucketName?: string | undefined;
1159
1161
  }
1160
1162
  export interface SAPODataDestinationProperties {
1161
1163
  objectPath: string | undefined;
1162
- successResponseHandlingConfig?: SuccessResponseHandlingConfig;
1163
- idFieldNames?: string[];
1164
- errorHandlingConfig?: ErrorHandlingConfig;
1165
- writeOperationType?: WriteOperationType;
1164
+ successResponseHandlingConfig?: SuccessResponseHandlingConfig | undefined;
1165
+ idFieldNames?: string[] | undefined;
1166
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1167
+ writeOperationType?: WriteOperationType | undefined;
1166
1168
  }
1167
1169
  export interface SnowflakeDestinationProperties {
1168
1170
  object: string | undefined;
1169
1171
  intermediateBucketName: string | undefined;
1170
- bucketPrefix?: string;
1171
- errorHandlingConfig?: ErrorHandlingConfig;
1172
+ bucketPrefix?: string | undefined;
1173
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1172
1174
  }
1173
1175
  export interface UpsolverS3OutputFormatConfig {
1174
- fileType?: FileType;
1176
+ fileType?: FileType | undefined;
1175
1177
  prefixConfig: PrefixConfig | undefined;
1176
- aggregationConfig?: AggregationConfig;
1178
+ aggregationConfig?: AggregationConfig | undefined;
1177
1179
  }
1178
1180
  export interface UpsolverDestinationProperties {
1179
1181
  bucketName: string | undefined;
1180
- bucketPrefix?: string;
1182
+ bucketPrefix?: string | undefined;
1181
1183
  s3OutputFormatConfig: UpsolverS3OutputFormatConfig | undefined;
1182
1184
  }
1183
1185
  export interface ZendeskDestinationProperties {
1184
1186
  object: string | undefined;
1185
- idFieldNames?: string[];
1186
- errorHandlingConfig?: ErrorHandlingConfig;
1187
- writeOperationType?: WriteOperationType;
1187
+ idFieldNames?: string[] | undefined;
1188
+ errorHandlingConfig?: ErrorHandlingConfig | undefined;
1189
+ writeOperationType?: WriteOperationType | undefined;
1188
1190
  }
1189
1191
  export interface DestinationConnectorProperties {
1190
- Redshift?: RedshiftDestinationProperties;
1191
- S3?: S3DestinationProperties;
1192
- Salesforce?: SalesforceDestinationProperties;
1193
- Snowflake?: SnowflakeDestinationProperties;
1194
- EventBridge?: EventBridgeDestinationProperties;
1195
- LookoutMetrics?: LookoutMetricsDestinationProperties;
1196
- Upsolver?: UpsolverDestinationProperties;
1197
- Honeycode?: HoneycodeDestinationProperties;
1198
- CustomerProfiles?: CustomerProfilesDestinationProperties;
1199
- Zendesk?: ZendeskDestinationProperties;
1200
- Marketo?: MarketoDestinationProperties;
1201
- CustomConnector?: CustomConnectorDestinationProperties;
1202
- SAPOData?: SAPODataDestinationProperties;
1192
+ Redshift?: RedshiftDestinationProperties | undefined;
1193
+ S3?: S3DestinationProperties | undefined;
1194
+ Salesforce?: SalesforceDestinationProperties | undefined;
1195
+ Snowflake?: SnowflakeDestinationProperties | undefined;
1196
+ EventBridge?: EventBridgeDestinationProperties | undefined;
1197
+ LookoutMetrics?: LookoutMetricsDestinationProperties | undefined;
1198
+ Upsolver?: UpsolverDestinationProperties | undefined;
1199
+ Honeycode?: HoneycodeDestinationProperties | undefined;
1200
+ CustomerProfiles?: CustomerProfilesDestinationProperties | undefined;
1201
+ Zendesk?: ZendeskDestinationProperties | undefined;
1202
+ Marketo?: MarketoDestinationProperties | undefined;
1203
+ CustomConnector?: CustomConnectorDestinationProperties | undefined;
1204
+ SAPOData?: SAPODataDestinationProperties | undefined;
1203
1205
  }
1204
1206
  export interface DestinationFlowConfig {
1205
1207
  connectorType: ConnectorType | undefined;
1206
- apiVersion?: string;
1207
- connectorProfileName?: string;
1208
+ apiVersion?: string | undefined;
1209
+ connectorProfileName?: string | undefined;
1208
1210
  destinationConnectorProperties: DestinationConnectorProperties | undefined;
1209
1211
  }
1210
1212
  export interface GlueDataCatalogConfig {
@@ -1213,15 +1215,15 @@ export interface GlueDataCatalogConfig {
1213
1215
  tablePrefix: string | undefined;
1214
1216
  }
1215
1217
  export interface MetadataCatalogConfig {
1216
- glueDataCatalog?: GlueDataCatalogConfig;
1218
+ glueDataCatalog?: GlueDataCatalogConfig | undefined;
1217
1219
  }
1218
1220
  export interface IncrementalPullConfig {
1219
- datetimeTypeFieldName?: string;
1221
+ datetimeTypeFieldName?: string | undefined;
1220
1222
  }
1221
1223
  export interface CustomConnectorSourceProperties {
1222
1224
  entityName: string | undefined;
1223
- customProperties?: Record<string, string>;
1224
- dataTransferApi?: DataTransferApi;
1225
+ customProperties?: Record<string, string> | undefined;
1226
+ dataTransferApi?: DataTransferApi | undefined;
1225
1227
  }
1226
1228
  export interface DatadogSourceProperties {
1227
1229
  object: string | undefined;
@@ -1248,18 +1250,18 @@ export declare const S3InputFileType: {
1248
1250
  export type S3InputFileType =
1249
1251
  (typeof S3InputFileType)[keyof typeof S3InputFileType];
1250
1252
  export interface S3InputFormatConfig {
1251
- s3InputFileType?: S3InputFileType;
1253
+ s3InputFileType?: S3InputFileType | undefined;
1252
1254
  }
1253
1255
  export interface S3SourceProperties {
1254
1256
  bucketName: string | undefined;
1255
- bucketPrefix?: string;
1256
- s3InputFormatConfig?: S3InputFormatConfig;
1257
+ bucketPrefix?: string | undefined;
1258
+ s3InputFormatConfig?: S3InputFormatConfig | undefined;
1257
1259
  }
1258
1260
  export interface SalesforceSourceProperties {
1259
1261
  object: string | undefined;
1260
- enableDynamicFieldUpdate?: boolean;
1261
- includeDeletedRecords?: boolean;
1262
- dataTransferApi?: SalesforceDataTransferApi;
1262
+ enableDynamicFieldUpdate?: boolean | undefined;
1263
+ includeDeletedRecords?: boolean | undefined;
1264
+ dataTransferApi?: SalesforceDataTransferApi | undefined;
1263
1265
  }
1264
1266
  export interface SAPODataPaginationConfig {
1265
1267
  maxPageSize: number | undefined;
@@ -1268,9 +1270,9 @@ export interface SAPODataParallelismConfig {
1268
1270
  maxParallelism: number | undefined;
1269
1271
  }
1270
1272
  export interface SAPODataSourceProperties {
1271
- objectPath?: string;
1272
- parallelismConfig?: SAPODataParallelismConfig;
1273
- paginationConfig?: SAPODataPaginationConfig;
1273
+ objectPath?: string | undefined;
1274
+ parallelismConfig?: SAPODataParallelismConfig | undefined;
1275
+ paginationConfig?: SAPODataPaginationConfig | undefined;
1274
1276
  }
1275
1277
  export interface ServiceNowSourceProperties {
1276
1278
  object: string | undefined;
@@ -1286,39 +1288,39 @@ export interface TrendmicroSourceProperties {
1286
1288
  }
1287
1289
  export interface VeevaSourceProperties {
1288
1290
  object: string | undefined;
1289
- documentType?: string;
1290
- includeSourceFiles?: boolean;
1291
- includeRenditions?: boolean;
1292
- includeAllVersions?: boolean;
1291
+ documentType?: string | undefined;
1292
+ includeSourceFiles?: boolean | undefined;
1293
+ includeRenditions?: boolean | undefined;
1294
+ includeAllVersions?: boolean | undefined;
1293
1295
  }
1294
1296
  export interface ZendeskSourceProperties {
1295
1297
  object: string | undefined;
1296
1298
  }
1297
1299
  export interface SourceConnectorProperties {
1298
- Amplitude?: AmplitudeSourceProperties;
1299
- Datadog?: DatadogSourceProperties;
1300
- Dynatrace?: DynatraceSourceProperties;
1301
- GoogleAnalytics?: GoogleAnalyticsSourceProperties;
1302
- InforNexus?: InforNexusSourceProperties;
1303
- Marketo?: MarketoSourceProperties;
1304
- S3?: S3SourceProperties;
1305
- Salesforce?: SalesforceSourceProperties;
1306
- ServiceNow?: ServiceNowSourceProperties;
1307
- Singular?: SingularSourceProperties;
1308
- Slack?: SlackSourceProperties;
1309
- Trendmicro?: TrendmicroSourceProperties;
1310
- Veeva?: VeevaSourceProperties;
1311
- Zendesk?: ZendeskSourceProperties;
1312
- SAPOData?: SAPODataSourceProperties;
1313
- CustomConnector?: CustomConnectorSourceProperties;
1314
- Pardot?: PardotSourceProperties;
1300
+ Amplitude?: AmplitudeSourceProperties | undefined;
1301
+ Datadog?: DatadogSourceProperties | undefined;
1302
+ Dynatrace?: DynatraceSourceProperties | undefined;
1303
+ GoogleAnalytics?: GoogleAnalyticsSourceProperties | undefined;
1304
+ InforNexus?: InforNexusSourceProperties | undefined;
1305
+ Marketo?: MarketoSourceProperties | undefined;
1306
+ S3?: S3SourceProperties | undefined;
1307
+ Salesforce?: SalesforceSourceProperties | undefined;
1308
+ ServiceNow?: ServiceNowSourceProperties | undefined;
1309
+ Singular?: SingularSourceProperties | undefined;
1310
+ Slack?: SlackSourceProperties | undefined;
1311
+ Trendmicro?: TrendmicroSourceProperties | undefined;
1312
+ Veeva?: VeevaSourceProperties | undefined;
1313
+ Zendesk?: ZendeskSourceProperties | undefined;
1314
+ SAPOData?: SAPODataSourceProperties | undefined;
1315
+ CustomConnector?: CustomConnectorSourceProperties | undefined;
1316
+ Pardot?: PardotSourceProperties | undefined;
1315
1317
  }
1316
1318
  export interface SourceFlowConfig {
1317
1319
  connectorType: ConnectorType | undefined;
1318
- apiVersion?: string;
1319
- connectorProfileName?: string;
1320
+ apiVersion?: string | undefined;
1321
+ connectorProfileName?: string | undefined;
1320
1322
  sourceConnectorProperties: SourceConnectorProperties | undefined;
1321
- incrementalPullConfig?: IncrementalPullConfig;
1323
+ incrementalPullConfig?: IncrementalPullConfig | undefined;
1322
1324
  }
1323
1325
  export declare const OperatorPropertiesKeys: {
1324
1326
  readonly CONCAT_FORMAT: "CONCAT_FORMAT";
@@ -1356,10 +1358,10 @@ export declare const TaskType: {
1356
1358
  export type TaskType = (typeof TaskType)[keyof typeof TaskType];
1357
1359
  export interface Task {
1358
1360
  sourceFields: string[] | undefined;
1359
- connectorOperator?: ConnectorOperator;
1360
- destinationField?: string;
1361
+ connectorOperator?: ConnectorOperator | undefined;
1362
+ destinationField?: string | undefined;
1361
1363
  taskType: TaskType | undefined;
1362
- taskProperties?: Partial<Record<OperatorPropertiesKeys, string>>;
1364
+ taskProperties?: Partial<Record<OperatorPropertiesKeys, string>> | undefined;
1363
1365
  }
1364
1366
  export declare const DataPullMode: {
1365
1367
  readonly COMPLETE: "Complete";
@@ -1368,32 +1370,32 @@ export declare const DataPullMode: {
1368
1370
  export type DataPullMode = (typeof DataPullMode)[keyof typeof DataPullMode];
1369
1371
  export interface ScheduledTriggerProperties {
1370
1372
  scheduleExpression: string | undefined;
1371
- dataPullMode?: DataPullMode;
1372
- scheduleStartTime?: Date;
1373
- scheduleEndTime?: Date;
1374
- timezone?: string;
1375
- scheduleOffset?: number;
1376
- firstExecutionFrom?: Date;
1377
- flowErrorDeactivationThreshold?: number;
1373
+ dataPullMode?: DataPullMode | undefined;
1374
+ scheduleStartTime?: Date | undefined;
1375
+ scheduleEndTime?: Date | undefined;
1376
+ timezone?: string | undefined;
1377
+ scheduleOffset?: number | undefined;
1378
+ firstExecutionFrom?: Date | undefined;
1379
+ flowErrorDeactivationThreshold?: number | undefined;
1378
1380
  }
1379
1381
  export interface TriggerProperties {
1380
- Scheduled?: ScheduledTriggerProperties;
1382
+ Scheduled?: ScheduledTriggerProperties | undefined;
1381
1383
  }
1382
1384
  export interface TriggerConfig {
1383
1385
  triggerType: TriggerType | undefined;
1384
- triggerProperties?: TriggerProperties;
1386
+ triggerProperties?: TriggerProperties | undefined;
1385
1387
  }
1386
1388
  export interface CreateFlowRequest {
1387
1389
  flowName: string | undefined;
1388
- description?: string;
1389
- kmsArn?: string;
1390
+ description?: string | undefined;
1391
+ kmsArn?: string | undefined;
1390
1392
  triggerConfig: TriggerConfig | undefined;
1391
1393
  sourceFlowConfig: SourceFlowConfig | undefined;
1392
1394
  destinationFlowConfigList: DestinationFlowConfig[] | undefined;
1393
1395
  tasks: Task[] | undefined;
1394
- tags?: Record<string, string>;
1395
- metadataCatalogConfig?: MetadataCatalogConfig;
1396
- clientToken?: string;
1396
+ tags?: Record<string, string> | undefined;
1397
+ metadataCatalogConfig?: MetadataCatalogConfig | undefined;
1398
+ clientToken?: string | undefined;
1397
1399
  }
1398
1400
  export declare const FlowStatus: {
1399
1401
  readonly ACTIVE: "Active";
@@ -1405,57 +1407,57 @@ export declare const FlowStatus: {
1405
1407
  };
1406
1408
  export type FlowStatus = (typeof FlowStatus)[keyof typeof FlowStatus];
1407
1409
  export interface CreateFlowResponse {
1408
- flowArn?: string;
1409
- flowStatus?: FlowStatus;
1410
+ flowArn?: string | undefined;
1411
+ flowStatus?: FlowStatus | undefined;
1410
1412
  }
1411
1413
  export interface DeleteConnectorProfileRequest {
1412
1414
  connectorProfileName: string | undefined;
1413
- forceDelete?: boolean;
1415
+ forceDelete?: boolean | undefined;
1414
1416
  }
1415
1417
  export interface DeleteConnectorProfileResponse {}
1416
1418
  export interface DeleteFlowRequest {
1417
1419
  flowName: string | undefined;
1418
- forceDelete?: boolean;
1420
+ forceDelete?: boolean | undefined;
1419
1421
  }
1420
1422
  export interface DeleteFlowResponse {}
1421
1423
  export interface DescribeConnectorRequest {
1422
1424
  connectorType: ConnectorType | undefined;
1423
- connectorLabel?: string;
1425
+ connectorLabel?: string | undefined;
1424
1426
  }
1425
1427
  export interface DescribeConnectorResponse {
1426
- connectorConfiguration?: ConnectorConfiguration;
1428
+ connectorConfiguration?: ConnectorConfiguration | undefined;
1427
1429
  }
1428
1430
  export interface DescribeConnectorEntityRequest {
1429
1431
  connectorEntityName: string | undefined;
1430
- connectorType?: ConnectorType;
1431
- connectorProfileName?: string;
1432
- apiVersion?: string;
1432
+ connectorType?: ConnectorType | undefined;
1433
+ connectorProfileName?: string | undefined;
1434
+ apiVersion?: string | undefined;
1433
1435
  }
1434
1436
  export interface DescribeConnectorEntityResponse {
1435
1437
  connectorEntityFields: ConnectorEntityField[] | undefined;
1436
1438
  }
1437
1439
  export interface DescribeConnectorProfilesRequest {
1438
- connectorProfileNames?: string[];
1439
- connectorType?: ConnectorType;
1440
- connectorLabel?: string;
1441
- maxResults?: number;
1442
- nextToken?: string;
1440
+ connectorProfileNames?: string[] | undefined;
1441
+ connectorType?: ConnectorType | undefined;
1442
+ connectorLabel?: string | undefined;
1443
+ maxResults?: number | undefined;
1444
+ nextToken?: string | undefined;
1443
1445
  }
1444
1446
  export interface DescribeConnectorProfilesResponse {
1445
- connectorProfileDetails?: ConnectorProfile[];
1446
- nextToken?: string;
1447
+ connectorProfileDetails?: ConnectorProfile[] | undefined;
1448
+ nextToken?: string | undefined;
1447
1449
  }
1448
1450
  export interface DescribeConnectorsRequest {
1449
- connectorTypes?: ConnectorType[];
1450
- maxResults?: number;
1451
- nextToken?: string;
1451
+ connectorTypes?: ConnectorType[] | undefined;
1452
+ maxResults?: number | undefined;
1453
+ nextToken?: string | undefined;
1452
1454
  }
1453
1455
  export interface DescribeConnectorsResponse {
1454
- connectorConfigurations?: Partial<
1455
- Record<ConnectorType, ConnectorConfiguration>
1456
- >;
1457
- connectors?: ConnectorDetail[];
1458
- nextToken?: string;
1456
+ connectorConfigurations?:
1457
+ | Partial<Record<ConnectorType, ConnectorConfiguration>>
1458
+ | undefined;
1459
+ connectors?: ConnectorDetail[] | undefined;
1460
+ nextToken?: string | undefined;
1459
1461
  }
1460
1462
  export interface DescribeFlowRequest {
1461
1463
  flowName: string | undefined;
@@ -1470,157 +1472,157 @@ export declare const ExecutionStatus: {
1470
1472
  export type ExecutionStatus =
1471
1473
  (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
1472
1474
  export interface ExecutionDetails {
1473
- mostRecentExecutionMessage?: string;
1474
- mostRecentExecutionTime?: Date;
1475
- mostRecentExecutionStatus?: ExecutionStatus;
1475
+ mostRecentExecutionMessage?: string | undefined;
1476
+ mostRecentExecutionTime?: Date | undefined;
1477
+ mostRecentExecutionStatus?: ExecutionStatus | undefined;
1476
1478
  }
1477
1479
  export interface RegistrationOutput {
1478
- message?: string;
1479
- result?: string;
1480
- status?: ExecutionStatus;
1480
+ message?: string | undefined;
1481
+ result?: string | undefined;
1482
+ status?: ExecutionStatus | undefined;
1481
1483
  }
1482
1484
  export interface MetadataCatalogDetail {
1483
- catalogType?: CatalogType;
1484
- tableName?: string;
1485
- tableRegistrationOutput?: RegistrationOutput;
1486
- partitionRegistrationOutput?: RegistrationOutput;
1485
+ catalogType?: CatalogType | undefined;
1486
+ tableName?: string | undefined;
1487
+ tableRegistrationOutput?: RegistrationOutput | undefined;
1488
+ partitionRegistrationOutput?: RegistrationOutput | undefined;
1487
1489
  }
1488
1490
  export interface DescribeFlowResponse {
1489
- flowArn?: string;
1490
- description?: string;
1491
- flowName?: string;
1492
- kmsArn?: string;
1493
- flowStatus?: FlowStatus;
1494
- flowStatusMessage?: string;
1495
- sourceFlowConfig?: SourceFlowConfig;
1496
- destinationFlowConfigList?: DestinationFlowConfig[];
1497
- lastRunExecutionDetails?: ExecutionDetails;
1498
- triggerConfig?: TriggerConfig;
1499
- tasks?: Task[];
1500
- createdAt?: Date;
1501
- lastUpdatedAt?: Date;
1502
- createdBy?: string;
1503
- lastUpdatedBy?: string;
1504
- tags?: Record<string, string>;
1505
- metadataCatalogConfig?: MetadataCatalogConfig;
1506
- lastRunMetadataCatalogDetails?: MetadataCatalogDetail[];
1507
- schemaVersion?: number;
1491
+ flowArn?: string | undefined;
1492
+ description?: string | undefined;
1493
+ flowName?: string | undefined;
1494
+ kmsArn?: string | undefined;
1495
+ flowStatus?: FlowStatus | undefined;
1496
+ flowStatusMessage?: string | undefined;
1497
+ sourceFlowConfig?: SourceFlowConfig | undefined;
1498
+ destinationFlowConfigList?: DestinationFlowConfig[] | undefined;
1499
+ lastRunExecutionDetails?: ExecutionDetails | undefined;
1500
+ triggerConfig?: TriggerConfig | undefined;
1501
+ tasks?: Task[] | undefined;
1502
+ createdAt?: Date | undefined;
1503
+ lastUpdatedAt?: Date | undefined;
1504
+ createdBy?: string | undefined;
1505
+ lastUpdatedBy?: string | undefined;
1506
+ tags?: Record<string, string> | undefined;
1507
+ metadataCatalogConfig?: MetadataCatalogConfig | undefined;
1508
+ lastRunMetadataCatalogDetails?: MetadataCatalogDetail[] | undefined;
1509
+ schemaVersion?: number | undefined;
1508
1510
  }
1509
1511
  export interface DescribeFlowExecutionRecordsRequest {
1510
1512
  flowName: string | undefined;
1511
- maxResults?: number;
1512
- nextToken?: string;
1513
+ maxResults?: number | undefined;
1514
+ nextToken?: string | undefined;
1513
1515
  }
1514
1516
  export interface ErrorInfo {
1515
- putFailuresCount?: number;
1516
- executionMessage?: string;
1517
+ putFailuresCount?: number | undefined;
1518
+ executionMessage?: string | undefined;
1517
1519
  }
1518
1520
  export interface ExecutionResult {
1519
- errorInfo?: ErrorInfo;
1520
- bytesProcessed?: number;
1521
- bytesWritten?: number;
1522
- recordsProcessed?: number;
1523
- numParallelProcesses?: number;
1524
- maxPageSize?: number;
1521
+ errorInfo?: ErrorInfo | undefined;
1522
+ bytesProcessed?: number | undefined;
1523
+ bytesWritten?: number | undefined;
1524
+ recordsProcessed?: number | undefined;
1525
+ numParallelProcesses?: number | undefined;
1526
+ maxPageSize?: number | undefined;
1525
1527
  }
1526
1528
  export interface ExecutionRecord {
1527
- executionId?: string;
1528
- executionStatus?: ExecutionStatus;
1529
- executionResult?: ExecutionResult;
1530
- startedAt?: Date;
1531
- lastUpdatedAt?: Date;
1532
- dataPullStartTime?: Date;
1533
- dataPullEndTime?: Date;
1534
- metadataCatalogDetails?: MetadataCatalogDetail[];
1529
+ executionId?: string | undefined;
1530
+ executionStatus?: ExecutionStatus | undefined;
1531
+ executionResult?: ExecutionResult | undefined;
1532
+ startedAt?: Date | undefined;
1533
+ lastUpdatedAt?: Date | undefined;
1534
+ dataPullStartTime?: Date | undefined;
1535
+ dataPullEndTime?: Date | undefined;
1536
+ metadataCatalogDetails?: MetadataCatalogDetail[] | undefined;
1535
1537
  }
1536
1538
  export interface DescribeFlowExecutionRecordsResponse {
1537
- flowExecutions?: ExecutionRecord[];
1538
- nextToken?: string;
1539
+ flowExecutions?: ExecutionRecord[] | undefined;
1540
+ nextToken?: string | undefined;
1539
1541
  }
1540
1542
  export interface FlowDefinition {
1541
- flowArn?: string;
1542
- description?: string;
1543
- flowName?: string;
1544
- flowStatus?: FlowStatus;
1545
- sourceConnectorType?: ConnectorType;
1546
- sourceConnectorLabel?: string;
1547
- destinationConnectorType?: ConnectorType;
1548
- destinationConnectorLabel?: string;
1549
- triggerType?: TriggerType;
1550
- createdAt?: Date;
1551
- lastUpdatedAt?: Date;
1552
- createdBy?: string;
1553
- lastUpdatedBy?: string;
1554
- tags?: Record<string, string>;
1555
- lastRunExecutionDetails?: ExecutionDetails;
1543
+ flowArn?: string | undefined;
1544
+ description?: string | undefined;
1545
+ flowName?: string | undefined;
1546
+ flowStatus?: FlowStatus | undefined;
1547
+ sourceConnectorType?: ConnectorType | undefined;
1548
+ sourceConnectorLabel?: string | undefined;
1549
+ destinationConnectorType?: ConnectorType | undefined;
1550
+ destinationConnectorLabel?: string | undefined;
1551
+ triggerType?: TriggerType | undefined;
1552
+ createdAt?: Date | undefined;
1553
+ lastUpdatedAt?: Date | undefined;
1554
+ createdBy?: string | undefined;
1555
+ lastUpdatedBy?: string | undefined;
1556
+ tags?: Record<string, string> | undefined;
1557
+ lastRunExecutionDetails?: ExecutionDetails | undefined;
1556
1558
  }
1557
1559
  export interface ListConnectorEntitiesRequest {
1558
- connectorProfileName?: string;
1559
- connectorType?: ConnectorType;
1560
- entitiesPath?: string;
1561
- apiVersion?: string;
1562
- maxResults?: number;
1563
- nextToken?: string;
1560
+ connectorProfileName?: string | undefined;
1561
+ connectorType?: ConnectorType | undefined;
1562
+ entitiesPath?: string | undefined;
1563
+ apiVersion?: string | undefined;
1564
+ maxResults?: number | undefined;
1565
+ nextToken?: string | undefined;
1564
1566
  }
1565
1567
  export interface ListConnectorEntitiesResponse {
1566
1568
  connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
1567
- nextToken?: string;
1569
+ nextToken?: string | undefined;
1568
1570
  }
1569
1571
  export interface ListConnectorsRequest {
1570
- maxResults?: number;
1571
- nextToken?: string;
1572
+ maxResults?: number | undefined;
1573
+ nextToken?: string | undefined;
1572
1574
  }
1573
1575
  export interface ListConnectorsResponse {
1574
- connectors?: ConnectorDetail[];
1575
- nextToken?: string;
1576
+ connectors?: ConnectorDetail[] | undefined;
1577
+ nextToken?: string | undefined;
1576
1578
  }
1577
1579
  export interface ListFlowsRequest {
1578
- maxResults?: number;
1579
- nextToken?: string;
1580
+ maxResults?: number | undefined;
1581
+ nextToken?: string | undefined;
1580
1582
  }
1581
1583
  export interface ListFlowsResponse {
1582
- flows?: FlowDefinition[];
1583
- nextToken?: string;
1584
+ flows?: FlowDefinition[] | undefined;
1585
+ nextToken?: string | undefined;
1584
1586
  }
1585
1587
  export interface ListTagsForResourceRequest {
1586
1588
  resourceArn: string | undefined;
1587
1589
  }
1588
1590
  export interface ListTagsForResourceResponse {
1589
- tags?: Record<string, string>;
1591
+ tags?: Record<string, string> | undefined;
1590
1592
  }
1591
1593
  export interface RegisterConnectorRequest {
1592
- connectorLabel?: string;
1593
- description?: string;
1594
- connectorProvisioningType?: ConnectorProvisioningType;
1595
- connectorProvisioningConfig?: ConnectorProvisioningConfig;
1596
- clientToken?: string;
1594
+ connectorLabel?: string | undefined;
1595
+ description?: string | undefined;
1596
+ connectorProvisioningType?: ConnectorProvisioningType | undefined;
1597
+ connectorProvisioningConfig?: ConnectorProvisioningConfig | undefined;
1598
+ clientToken?: string | undefined;
1597
1599
  }
1598
1600
  export interface RegisterConnectorResponse {
1599
- connectorArn?: string;
1601
+ connectorArn?: string | undefined;
1600
1602
  }
1601
1603
  export interface ResetConnectorMetadataCacheRequest {
1602
- connectorProfileName?: string;
1603
- connectorType?: ConnectorType;
1604
- connectorEntityName?: string;
1605
- entitiesPath?: string;
1606
- apiVersion?: string;
1604
+ connectorProfileName?: string | undefined;
1605
+ connectorType?: ConnectorType | undefined;
1606
+ connectorEntityName?: string | undefined;
1607
+ entitiesPath?: string | undefined;
1608
+ apiVersion?: string | undefined;
1607
1609
  }
1608
1610
  export interface ResetConnectorMetadataCacheResponse {}
1609
1611
  export interface StartFlowRequest {
1610
1612
  flowName: string | undefined;
1611
- clientToken?: string;
1613
+ clientToken?: string | undefined;
1612
1614
  }
1613
1615
  export interface StartFlowResponse {
1614
- flowArn?: string;
1615
- flowStatus?: FlowStatus;
1616
- executionId?: string;
1616
+ flowArn?: string | undefined;
1617
+ flowStatus?: FlowStatus | undefined;
1618
+ executionId?: string | undefined;
1617
1619
  }
1618
1620
  export interface StopFlowRequest {
1619
1621
  flowName: string | undefined;
1620
1622
  }
1621
1623
  export interface StopFlowResponse {
1622
- flowArn?: string;
1623
- flowStatus?: FlowStatus;
1624
+ flowArn?: string | undefined;
1625
+ flowStatus?: FlowStatus | undefined;
1624
1626
  }
1625
1627
  export declare class UnsupportedOperationException extends __BaseException {
1626
1628
  readonly name: "UnsupportedOperationException";
@@ -1636,7 +1638,7 @@ export interface TagResourceRequest {
1636
1638
  export interface TagResourceResponse {}
1637
1639
  export interface UnregisterConnectorRequest {
1638
1640
  connectorLabel: string | undefined;
1639
- forceDelete?: boolean;
1641
+ forceDelete?: boolean | undefined;
1640
1642
  }
1641
1643
  export interface UnregisterConnectorResponse {}
1642
1644
  export interface UntagResourceRequest {
@@ -1648,32 +1650,32 @@ export interface UpdateConnectorProfileRequest {
1648
1650
  connectorProfileName: string | undefined;
1649
1651
  connectionMode: ConnectionMode | undefined;
1650
1652
  connectorProfileConfig: ConnectorProfileConfig | undefined;
1651
- clientToken?: string;
1653
+ clientToken?: string | undefined;
1652
1654
  }
1653
1655
  export interface UpdateConnectorProfileResponse {
1654
- connectorProfileArn?: string;
1656
+ connectorProfileArn?: string | undefined;
1655
1657
  }
1656
1658
  export interface UpdateConnectorRegistrationRequest {
1657
1659
  connectorLabel: string | undefined;
1658
- description?: string;
1659
- connectorProvisioningConfig?: ConnectorProvisioningConfig;
1660
- clientToken?: string;
1660
+ description?: string | undefined;
1661
+ connectorProvisioningConfig?: ConnectorProvisioningConfig | undefined;
1662
+ clientToken?: string | undefined;
1661
1663
  }
1662
1664
  export interface UpdateConnectorRegistrationResponse {
1663
- connectorArn?: string;
1665
+ connectorArn?: string | undefined;
1664
1666
  }
1665
1667
  export interface UpdateFlowRequest {
1666
1668
  flowName: string | undefined;
1667
- description?: string;
1669
+ description?: string | undefined;
1668
1670
  triggerConfig: TriggerConfig | undefined;
1669
1671
  sourceFlowConfig: SourceFlowConfig | undefined;
1670
1672
  destinationFlowConfigList: DestinationFlowConfig[] | undefined;
1671
1673
  tasks: Task[] | undefined;
1672
- metadataCatalogConfig?: MetadataCatalogConfig;
1673
- clientToken?: string;
1674
+ metadataCatalogConfig?: MetadataCatalogConfig | undefined;
1675
+ clientToken?: string | undefined;
1674
1676
  }
1675
1677
  export interface UpdateFlowResponse {
1676
- flowStatus?: FlowStatus;
1678
+ flowStatus?: FlowStatus | undefined;
1677
1679
  }
1678
1680
  export declare const AmplitudeConnectorProfileCredentialsFilterSensitiveLog: (
1679
1681
  obj: AmplitudeConnectorProfileCredentials