@aws-sdk/client-datazone 3.844.0 → 3.845.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/dist-cjs/index.js +46 -34
- package/dist-es/commands/UpdateRuleCommand.js +1 -1
- package/dist-es/models/models_0.js +13 -9
- package/dist-es/models/models_1.js +9 -17
- package/dist-es/models/models_2.js +17 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +12 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +2 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +8 -2
- package/dist-types/commands/ListConnectionsCommand.d.ts +9 -3
- package/dist-types/commands/UpdateConnectionCommand.d.ts +12 -2
- package/dist-types/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +131 -95
- package/dist-types/models/models_1.d.ts +92 -131
- package/dist-types/models/models_2.d.ts +132 -2
- package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +75 -28
- package/dist-types/ts3.4/models/models_1.d.ts +27 -38
- package/dist-types/ts3.4/models/models_2.d.ts +42 -2
- package/package.json +11 -11
|
@@ -1,5 +1,127 @@
|
|
|
1
|
-
import { ActionParameters, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionType, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, EnvironmentStatus, FailureCause, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Model, PhysicalEndpoint, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, RowFilterExpression, Status, SubscribedAsset, SubscribedListing, SubscribedPrincipal,
|
|
2
|
-
import { DataProductListingItem, DataProductResultItem, Import,
|
|
1
|
+
import { ActionParameters, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionType, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, EnvironmentStatus, FailureCause, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Model, PhysicalEndpoint, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, RowFilterExpression, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleType, Status, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantStatus, SubscriptionRequestStatus, TermRelations } from "./models_0";
|
|
2
|
+
import { DataProductListingItem, DataProductResultItem, Import, SortOrder, SubscriptionGrantOverallStatus, SubscriptionTargetForm, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface UpdateRuleInput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The ID of the domain in which a rule is to be updated.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
domainIdentifier: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The ID of the rule that is to be updated</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
identifier: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The name of the rule.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
name?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The description of the rule.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
description?: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The scrope of the rule.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
scope?: RuleScope | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The detail of the rule.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
detail?: RuleDetail | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>Specifies whether to update this rule in the child domain units.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface UpdateRuleOutput {
|
|
47
|
+
/**
|
|
48
|
+
* <p>The ID of the rule.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
identifier: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The revision of the rule.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
revision: string | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The name of the rule.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
name: string | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The type of the rule.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
ruleType: RuleType | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The target of the rule.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
target: RuleTarget | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>The action of the rule.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
action: RuleAction | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>The scope of the rule.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
scope: RuleScope | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The detail of the rule.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
detail: RuleDetail | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The description of the rule.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
description?: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The timestamp at which the rule was created.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
createdAt: Date | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The timestamp at which the rule was last updated.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
updatedAt: Date | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The user who created the rule.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
createdBy: string | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The timestamp at which the rule was last updated.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
lastUpdatedBy: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
* @enum
|
|
116
|
+
*/
|
|
117
|
+
export declare const SearchOutputAdditionalAttribute: {
|
|
118
|
+
readonly FORMS: "FORMS";
|
|
119
|
+
readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export type SearchOutputAdditionalAttribute = (typeof SearchOutputAdditionalAttribute)[keyof typeof SearchOutputAdditionalAttribute];
|
|
3
125
|
/**
|
|
4
126
|
* <p>A search filter in Amazon DataZone.</p>
|
|
5
127
|
* @public
|
|
@@ -2508,6 +2630,14 @@ export interface UpdateAssetFilterOutput {
|
|
|
2508
2630
|
*/
|
|
2509
2631
|
effectiveRowFilter?: string | undefined;
|
|
2510
2632
|
}
|
|
2633
|
+
/**
|
|
2634
|
+
* @internal
|
|
2635
|
+
*/
|
|
2636
|
+
export declare const UpdateRuleInputFilterSensitiveLog: (obj: UpdateRuleInput) => any;
|
|
2637
|
+
/**
|
|
2638
|
+
* @internal
|
|
2639
|
+
*/
|
|
2640
|
+
export declare const UpdateRuleOutputFilterSensitiveLog: (obj: UpdateRuleOutput) => any;
|
|
2511
2641
|
/**
|
|
2512
2642
|
* @internal
|
|
2513
2643
|
*/
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
CreateSubscriptionGrantOutput,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { CreateSubscriptionGrantInput } from "../models/models_0";
|
|
9
|
+
import { CreateSubscriptionGrantOutput } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface CreateSubscriptionGrantCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { UpdateRuleInput, UpdateRuleOutput } from "../models/
|
|
8
|
+
import { UpdateRuleInput, UpdateRuleOutput } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateRuleCommandInput extends UpdateRuleInput {}
|
|
@@ -1674,6 +1674,10 @@ export interface RedshiftPropertiesInput {
|
|
|
1674
1674
|
credentials?: RedshiftCredentials | undefined;
|
|
1675
1675
|
lineageSync?: RedshiftLineageSyncConfigurationInput | undefined;
|
|
1676
1676
|
}
|
|
1677
|
+
export interface S3PropertiesInput {
|
|
1678
|
+
s3Uri: string | undefined;
|
|
1679
|
+
s3AccessGrantLocationId?: string | undefined;
|
|
1680
|
+
}
|
|
1677
1681
|
export interface SparkEmrPropertiesInput {
|
|
1678
1682
|
computeArn?: string | undefined;
|
|
1679
1683
|
instanceProfileArn?: string | undefined;
|
|
@@ -1702,6 +1706,7 @@ export type ConnectionPropertiesInput =
|
|
|
1702
1706
|
| ConnectionPropertiesInput.HyperPodPropertiesMember
|
|
1703
1707
|
| ConnectionPropertiesInput.IamPropertiesMember
|
|
1704
1708
|
| ConnectionPropertiesInput.RedshiftPropertiesMember
|
|
1709
|
+
| ConnectionPropertiesInput.S3PropertiesMember
|
|
1705
1710
|
| ConnectionPropertiesInput.SparkEmrPropertiesMember
|
|
1706
1711
|
| ConnectionPropertiesInput.SparkGluePropertiesMember
|
|
1707
1712
|
| ConnectionPropertiesInput.$UnknownMember;
|
|
@@ -1714,6 +1719,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1714
1719
|
redshiftProperties?: never;
|
|
1715
1720
|
sparkEmrProperties?: never;
|
|
1716
1721
|
sparkGlueProperties?: never;
|
|
1722
|
+
s3Properties?: never;
|
|
1717
1723
|
$unknown?: never;
|
|
1718
1724
|
}
|
|
1719
1725
|
interface GluePropertiesMember {
|
|
@@ -1724,6 +1730,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1724
1730
|
redshiftProperties?: never;
|
|
1725
1731
|
sparkEmrProperties?: never;
|
|
1726
1732
|
sparkGlueProperties?: never;
|
|
1733
|
+
s3Properties?: never;
|
|
1727
1734
|
$unknown?: never;
|
|
1728
1735
|
}
|
|
1729
1736
|
interface HyperPodPropertiesMember {
|
|
@@ -1734,6 +1741,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1734
1741
|
redshiftProperties?: never;
|
|
1735
1742
|
sparkEmrProperties?: never;
|
|
1736
1743
|
sparkGlueProperties?: never;
|
|
1744
|
+
s3Properties?: never;
|
|
1737
1745
|
$unknown?: never;
|
|
1738
1746
|
}
|
|
1739
1747
|
interface IamPropertiesMember {
|
|
@@ -1744,6 +1752,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1744
1752
|
redshiftProperties?: never;
|
|
1745
1753
|
sparkEmrProperties?: never;
|
|
1746
1754
|
sparkGlueProperties?: never;
|
|
1755
|
+
s3Properties?: never;
|
|
1747
1756
|
$unknown?: never;
|
|
1748
1757
|
}
|
|
1749
1758
|
interface RedshiftPropertiesMember {
|
|
@@ -1754,6 +1763,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1754
1763
|
redshiftProperties: RedshiftPropertiesInput;
|
|
1755
1764
|
sparkEmrProperties?: never;
|
|
1756
1765
|
sparkGlueProperties?: never;
|
|
1766
|
+
s3Properties?: never;
|
|
1757
1767
|
$unknown?: never;
|
|
1758
1768
|
}
|
|
1759
1769
|
interface SparkEmrPropertiesMember {
|
|
@@ -1764,6 +1774,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1764
1774
|
redshiftProperties?: never;
|
|
1765
1775
|
sparkEmrProperties: SparkEmrPropertiesInput;
|
|
1766
1776
|
sparkGlueProperties?: never;
|
|
1777
|
+
s3Properties?: never;
|
|
1767
1778
|
$unknown?: never;
|
|
1768
1779
|
}
|
|
1769
1780
|
interface SparkGluePropertiesMember {
|
|
@@ -1774,6 +1785,18 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1774
1785
|
redshiftProperties?: never;
|
|
1775
1786
|
sparkEmrProperties?: never;
|
|
1776
1787
|
sparkGlueProperties: SparkGluePropertiesInput;
|
|
1788
|
+
s3Properties?: never;
|
|
1789
|
+
$unknown?: never;
|
|
1790
|
+
}
|
|
1791
|
+
interface S3PropertiesMember {
|
|
1792
|
+
athenaProperties?: never;
|
|
1793
|
+
glueProperties?: never;
|
|
1794
|
+
hyperPodProperties?: never;
|
|
1795
|
+
iamProperties?: never;
|
|
1796
|
+
redshiftProperties?: never;
|
|
1797
|
+
sparkEmrProperties?: never;
|
|
1798
|
+
sparkGlueProperties?: never;
|
|
1799
|
+
s3Properties: S3PropertiesInput;
|
|
1777
1800
|
$unknown?: never;
|
|
1778
1801
|
}
|
|
1779
1802
|
interface $UnknownMember {
|
|
@@ -1784,6 +1807,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1784
1807
|
redshiftProperties?: never;
|
|
1785
1808
|
sparkEmrProperties?: never;
|
|
1786
1809
|
sparkGlueProperties?: never;
|
|
1810
|
+
s3Properties?: never;
|
|
1787
1811
|
$unknown: [string, any];
|
|
1788
1812
|
}
|
|
1789
1813
|
interface Visitor<T> {
|
|
@@ -1794,6 +1818,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1794
1818
|
redshiftProperties: (value: RedshiftPropertiesInput) => T;
|
|
1795
1819
|
sparkEmrProperties: (value: SparkEmrPropertiesInput) => T;
|
|
1796
1820
|
sparkGlueProperties: (value: SparkGluePropertiesInput) => T;
|
|
1821
|
+
s3Properties: (value: S3PropertiesInput) => T;
|
|
1797
1822
|
_: (name: string, value: any) => T;
|
|
1798
1823
|
}
|
|
1799
1824
|
const visit: <T>(value: ConnectionPropertiesInput, visitor: Visitor<T>) => T;
|
|
@@ -1845,6 +1870,12 @@ export interface RedshiftPropertiesOutput {
|
|
|
1845
1870
|
status?: ConnectionStatus | undefined;
|
|
1846
1871
|
databaseName?: string | undefined;
|
|
1847
1872
|
}
|
|
1873
|
+
export interface S3PropertiesOutput {
|
|
1874
|
+
s3Uri: string | undefined;
|
|
1875
|
+
s3AccessGrantLocationId?: string | undefined;
|
|
1876
|
+
status?: ConnectionStatus | undefined;
|
|
1877
|
+
errorMessage?: string | undefined;
|
|
1878
|
+
}
|
|
1848
1879
|
export declare const GovernanceType: {
|
|
1849
1880
|
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
1850
1881
|
readonly USER_MANAGED: "USER_MANAGED";
|
|
@@ -1880,6 +1911,7 @@ export type ConnectionPropertiesOutput =
|
|
|
1880
1911
|
| ConnectionPropertiesOutput.HyperPodPropertiesMember
|
|
1881
1912
|
| ConnectionPropertiesOutput.IamPropertiesMember
|
|
1882
1913
|
| ConnectionPropertiesOutput.RedshiftPropertiesMember
|
|
1914
|
+
| ConnectionPropertiesOutput.S3PropertiesMember
|
|
1883
1915
|
| ConnectionPropertiesOutput.SparkEmrPropertiesMember
|
|
1884
1916
|
| ConnectionPropertiesOutput.SparkGluePropertiesMember
|
|
1885
1917
|
| ConnectionPropertiesOutput.$UnknownMember;
|
|
@@ -1892,6 +1924,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1892
1924
|
redshiftProperties?: never;
|
|
1893
1925
|
sparkEmrProperties?: never;
|
|
1894
1926
|
sparkGlueProperties?: never;
|
|
1927
|
+
s3Properties?: never;
|
|
1895
1928
|
$unknown?: never;
|
|
1896
1929
|
}
|
|
1897
1930
|
interface GluePropertiesMember {
|
|
@@ -1902,6 +1935,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1902
1935
|
redshiftProperties?: never;
|
|
1903
1936
|
sparkEmrProperties?: never;
|
|
1904
1937
|
sparkGlueProperties?: never;
|
|
1938
|
+
s3Properties?: never;
|
|
1905
1939
|
$unknown?: never;
|
|
1906
1940
|
}
|
|
1907
1941
|
interface HyperPodPropertiesMember {
|
|
@@ -1912,6 +1946,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1912
1946
|
redshiftProperties?: never;
|
|
1913
1947
|
sparkEmrProperties?: never;
|
|
1914
1948
|
sparkGlueProperties?: never;
|
|
1949
|
+
s3Properties?: never;
|
|
1915
1950
|
$unknown?: never;
|
|
1916
1951
|
}
|
|
1917
1952
|
interface IamPropertiesMember {
|
|
@@ -1922,6 +1957,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1922
1957
|
redshiftProperties?: never;
|
|
1923
1958
|
sparkEmrProperties?: never;
|
|
1924
1959
|
sparkGlueProperties?: never;
|
|
1960
|
+
s3Properties?: never;
|
|
1925
1961
|
$unknown?: never;
|
|
1926
1962
|
}
|
|
1927
1963
|
interface RedshiftPropertiesMember {
|
|
@@ -1932,6 +1968,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1932
1968
|
redshiftProperties: RedshiftPropertiesOutput;
|
|
1933
1969
|
sparkEmrProperties?: never;
|
|
1934
1970
|
sparkGlueProperties?: never;
|
|
1971
|
+
s3Properties?: never;
|
|
1935
1972
|
$unknown?: never;
|
|
1936
1973
|
}
|
|
1937
1974
|
interface SparkEmrPropertiesMember {
|
|
@@ -1942,6 +1979,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1942
1979
|
redshiftProperties?: never;
|
|
1943
1980
|
sparkEmrProperties: SparkEmrPropertiesOutput;
|
|
1944
1981
|
sparkGlueProperties?: never;
|
|
1982
|
+
s3Properties?: never;
|
|
1945
1983
|
$unknown?: never;
|
|
1946
1984
|
}
|
|
1947
1985
|
interface SparkGluePropertiesMember {
|
|
@@ -1952,6 +1990,18 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1952
1990
|
redshiftProperties?: never;
|
|
1953
1991
|
sparkEmrProperties?: never;
|
|
1954
1992
|
sparkGlueProperties: SparkGluePropertiesOutput;
|
|
1993
|
+
s3Properties?: never;
|
|
1994
|
+
$unknown?: never;
|
|
1995
|
+
}
|
|
1996
|
+
interface S3PropertiesMember {
|
|
1997
|
+
athenaProperties?: never;
|
|
1998
|
+
glueProperties?: never;
|
|
1999
|
+
hyperPodProperties?: never;
|
|
2000
|
+
iamProperties?: never;
|
|
2001
|
+
redshiftProperties?: never;
|
|
2002
|
+
sparkEmrProperties?: never;
|
|
2003
|
+
sparkGlueProperties?: never;
|
|
2004
|
+
s3Properties: S3PropertiesOutput;
|
|
1955
2005
|
$unknown?: never;
|
|
1956
2006
|
}
|
|
1957
2007
|
interface $UnknownMember {
|
|
@@ -1962,6 +2012,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1962
2012
|
redshiftProperties?: never;
|
|
1963
2013
|
sparkEmrProperties?: never;
|
|
1964
2014
|
sparkGlueProperties?: never;
|
|
2015
|
+
s3Properties?: never;
|
|
1965
2016
|
$unknown: [string, any];
|
|
1966
2017
|
}
|
|
1967
2018
|
interface Visitor<T> {
|
|
@@ -1972,6 +2023,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
1972
2023
|
redshiftProperties: (value: RedshiftPropertiesOutput) => T;
|
|
1973
2024
|
sparkEmrProperties: (value: SparkEmrPropertiesOutput) => T;
|
|
1974
2025
|
sparkGlueProperties: (value: SparkGluePropertiesOutput) => T;
|
|
2026
|
+
s3Properties: (value: S3PropertiesOutput) => T;
|
|
1975
2027
|
_: (name: string, value: any) => T;
|
|
1976
2028
|
}
|
|
1977
2029
|
const visit: <T>(value: ConnectionPropertiesOutput, visitor: Visitor<T>) => T;
|
|
@@ -1995,6 +2047,10 @@ export interface RedshiftPropertiesPatch {
|
|
|
1995
2047
|
credentials?: RedshiftCredentials | undefined;
|
|
1996
2048
|
lineageSync?: RedshiftLineageSyncConfigurationInput | undefined;
|
|
1997
2049
|
}
|
|
2050
|
+
export interface S3PropertiesPatch {
|
|
2051
|
+
s3Uri: string | undefined;
|
|
2052
|
+
s3AccessGrantLocationId?: string | undefined;
|
|
2053
|
+
}
|
|
1998
2054
|
export interface SparkEmrPropertiesPatch {
|
|
1999
2055
|
computeArn?: string | undefined;
|
|
2000
2056
|
instanceProfileArn?: string | undefined;
|
|
@@ -2009,6 +2065,7 @@ export type ConnectionPropertiesPatch =
|
|
|
2009
2065
|
| ConnectionPropertiesPatch.GluePropertiesMember
|
|
2010
2066
|
| ConnectionPropertiesPatch.IamPropertiesMember
|
|
2011
2067
|
| ConnectionPropertiesPatch.RedshiftPropertiesMember
|
|
2068
|
+
| ConnectionPropertiesPatch.S3PropertiesMember
|
|
2012
2069
|
| ConnectionPropertiesPatch.SparkEmrPropertiesMember
|
|
2013
2070
|
| ConnectionPropertiesPatch.$UnknownMember;
|
|
2014
2071
|
export declare namespace ConnectionPropertiesPatch {
|
|
@@ -2018,6 +2075,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2018
2075
|
iamProperties?: never;
|
|
2019
2076
|
redshiftProperties?: never;
|
|
2020
2077
|
sparkEmrProperties?: never;
|
|
2078
|
+
s3Properties?: never;
|
|
2021
2079
|
$unknown?: never;
|
|
2022
2080
|
}
|
|
2023
2081
|
interface GluePropertiesMember {
|
|
@@ -2026,6 +2084,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2026
2084
|
iamProperties?: never;
|
|
2027
2085
|
redshiftProperties?: never;
|
|
2028
2086
|
sparkEmrProperties?: never;
|
|
2087
|
+
s3Properties?: never;
|
|
2029
2088
|
$unknown?: never;
|
|
2030
2089
|
}
|
|
2031
2090
|
interface IamPropertiesMember {
|
|
@@ -2034,6 +2093,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2034
2093
|
iamProperties: IamPropertiesPatch;
|
|
2035
2094
|
redshiftProperties?: never;
|
|
2036
2095
|
sparkEmrProperties?: never;
|
|
2096
|
+
s3Properties?: never;
|
|
2037
2097
|
$unknown?: never;
|
|
2038
2098
|
}
|
|
2039
2099
|
interface RedshiftPropertiesMember {
|
|
@@ -2042,6 +2102,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2042
2102
|
iamProperties?: never;
|
|
2043
2103
|
redshiftProperties: RedshiftPropertiesPatch;
|
|
2044
2104
|
sparkEmrProperties?: never;
|
|
2105
|
+
s3Properties?: never;
|
|
2045
2106
|
$unknown?: never;
|
|
2046
2107
|
}
|
|
2047
2108
|
interface SparkEmrPropertiesMember {
|
|
@@ -2050,6 +2111,16 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2050
2111
|
iamProperties?: never;
|
|
2051
2112
|
redshiftProperties?: never;
|
|
2052
2113
|
sparkEmrProperties: SparkEmrPropertiesPatch;
|
|
2114
|
+
s3Properties?: never;
|
|
2115
|
+
$unknown?: never;
|
|
2116
|
+
}
|
|
2117
|
+
interface S3PropertiesMember {
|
|
2118
|
+
athenaProperties?: never;
|
|
2119
|
+
glueProperties?: never;
|
|
2120
|
+
iamProperties?: never;
|
|
2121
|
+
redshiftProperties?: never;
|
|
2122
|
+
sparkEmrProperties?: never;
|
|
2123
|
+
s3Properties: S3PropertiesPatch;
|
|
2053
2124
|
$unknown?: never;
|
|
2054
2125
|
}
|
|
2055
2126
|
interface $UnknownMember {
|
|
@@ -2058,6 +2129,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2058
2129
|
iamProperties?: never;
|
|
2059
2130
|
redshiftProperties?: never;
|
|
2060
2131
|
sparkEmrProperties?: never;
|
|
2132
|
+
s3Properties?: never;
|
|
2061
2133
|
$unknown: [string, any];
|
|
2062
2134
|
}
|
|
2063
2135
|
interface Visitor<T> {
|
|
@@ -2066,6 +2138,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
2066
2138
|
iamProperties: (value: IamPropertiesPatch) => T;
|
|
2067
2139
|
redshiftProperties: (value: RedshiftPropertiesPatch) => T;
|
|
2068
2140
|
sparkEmrProperties: (value: SparkEmrPropertiesPatch) => T;
|
|
2141
|
+
s3Properties: (value: S3PropertiesPatch) => T;
|
|
2069
2142
|
_: (name: string, value: any) => T;
|
|
2070
2143
|
}
|
|
2071
2144
|
const visit: <T>(value: ConnectionPropertiesPatch, visitor: Visitor<T>) => T;
|
|
@@ -2083,6 +2156,7 @@ export declare const ConnectionType: {
|
|
|
2083
2156
|
readonly ORACLE: "ORACLE";
|
|
2084
2157
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
2085
2158
|
readonly REDSHIFT: "REDSHIFT";
|
|
2159
|
+
readonly S3: "S3";
|
|
2086
2160
|
readonly SAPHANA: "SAPHANA";
|
|
2087
2161
|
readonly SNOWFLAKE: "SNOWFLAKE";
|
|
2088
2162
|
readonly SPARK: "SPARK";
|
|
@@ -2668,7 +2742,7 @@ export interface CreateEnvironmentInput {
|
|
|
2668
2742
|
domainIdentifier: string | undefined;
|
|
2669
2743
|
description?: string | undefined;
|
|
2670
2744
|
name: string | undefined;
|
|
2671
|
-
environmentProfileIdentifier
|
|
2745
|
+
environmentProfileIdentifier?: string | undefined;
|
|
2672
2746
|
userParameters?: EnvironmentParameter[] | undefined;
|
|
2673
2747
|
glossaryTerms?: string[] | undefined;
|
|
2674
2748
|
environmentAccountIdentifier?: string | undefined;
|
|
@@ -3295,33 +3369,6 @@ export declare namespace GrantedEntity {
|
|
|
3295
3369
|
}
|
|
3296
3370
|
const visit: <T>(value: GrantedEntity, visitor: Visitor<T>) => T;
|
|
3297
3371
|
}
|
|
3298
|
-
export declare const SubscriptionGrantOverallStatus: {
|
|
3299
|
-
readonly COMPLETED: "COMPLETED";
|
|
3300
|
-
readonly GRANT_AND_REVOKE_FAILED: "GRANT_AND_REVOKE_FAILED";
|
|
3301
|
-
readonly GRANT_FAILED: "GRANT_FAILED";
|
|
3302
|
-
readonly INACCESSIBLE: "INACCESSIBLE";
|
|
3303
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
3304
|
-
readonly PENDING: "PENDING";
|
|
3305
|
-
readonly REVOKE_FAILED: "REVOKE_FAILED";
|
|
3306
|
-
};
|
|
3307
|
-
export type SubscriptionGrantOverallStatus =
|
|
3308
|
-
(typeof SubscriptionGrantOverallStatus)[keyof typeof SubscriptionGrantOverallStatus];
|
|
3309
|
-
export interface CreateSubscriptionGrantOutput {
|
|
3310
|
-
id: string | undefined;
|
|
3311
|
-
createdBy: string | undefined;
|
|
3312
|
-
updatedBy?: string | undefined;
|
|
3313
|
-
domainId: string | undefined;
|
|
3314
|
-
createdAt: Date | undefined;
|
|
3315
|
-
updatedAt: Date | undefined;
|
|
3316
|
-
subscriptionTargetId: string | undefined;
|
|
3317
|
-
grantedEntity: GrantedEntity | undefined;
|
|
3318
|
-
status: SubscriptionGrantOverallStatus | undefined;
|
|
3319
|
-
assets?: SubscribedAsset[] | undefined;
|
|
3320
|
-
subscriptionId?: string | undefined;
|
|
3321
|
-
}
|
|
3322
|
-
export interface SubscribedListingInput {
|
|
3323
|
-
identifier: string | undefined;
|
|
3324
|
-
}
|
|
3325
3372
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
3326
3373
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
3327
3374
|
obj: AcceptPredictionsInput
|
|
@@ -60,9 +60,7 @@ import {
|
|
|
60
60
|
Status,
|
|
61
61
|
SubscribedAsset,
|
|
62
62
|
SubscribedListing,
|
|
63
|
-
SubscribedListingInput,
|
|
64
63
|
SubscribedPrincipal,
|
|
65
|
-
SubscriptionGrantOverallStatus,
|
|
66
64
|
SubscriptionRequestStatus,
|
|
67
65
|
SubscriptionStatus,
|
|
68
66
|
TargetEntityType,
|
|
@@ -70,6 +68,33 @@ import {
|
|
|
70
68
|
TimeSeriesDataPointSummaryFormOutput,
|
|
71
69
|
UserDesignation,
|
|
72
70
|
} from "./models_0";
|
|
71
|
+
export declare const SubscriptionGrantOverallStatus: {
|
|
72
|
+
readonly COMPLETED: "COMPLETED";
|
|
73
|
+
readonly GRANT_AND_REVOKE_FAILED: "GRANT_AND_REVOKE_FAILED";
|
|
74
|
+
readonly GRANT_FAILED: "GRANT_FAILED";
|
|
75
|
+
readonly INACCESSIBLE: "INACCESSIBLE";
|
|
76
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
77
|
+
readonly PENDING: "PENDING";
|
|
78
|
+
readonly REVOKE_FAILED: "REVOKE_FAILED";
|
|
79
|
+
};
|
|
80
|
+
export type SubscriptionGrantOverallStatus =
|
|
81
|
+
(typeof SubscriptionGrantOverallStatus)[keyof typeof SubscriptionGrantOverallStatus];
|
|
82
|
+
export interface CreateSubscriptionGrantOutput {
|
|
83
|
+
id: string | undefined;
|
|
84
|
+
createdBy: string | undefined;
|
|
85
|
+
updatedBy?: string | undefined;
|
|
86
|
+
domainId: string | undefined;
|
|
87
|
+
createdAt: Date | undefined;
|
|
88
|
+
updatedAt: Date | undefined;
|
|
89
|
+
subscriptionTargetId: string | undefined;
|
|
90
|
+
grantedEntity: GrantedEntity | undefined;
|
|
91
|
+
status: SubscriptionGrantOverallStatus | undefined;
|
|
92
|
+
assets?: SubscribedAsset[] | undefined;
|
|
93
|
+
subscriptionId?: string | undefined;
|
|
94
|
+
}
|
|
95
|
+
export interface SubscribedListingInput {
|
|
96
|
+
identifier: string | undefined;
|
|
97
|
+
}
|
|
73
98
|
export interface SubscribedProjectInput {
|
|
74
99
|
identifier?: string | undefined;
|
|
75
100
|
}
|
|
@@ -2337,36 +2362,6 @@ export interface ListRulesOutput {
|
|
|
2337
2362
|
items: RuleSummary[] | undefined;
|
|
2338
2363
|
nextToken?: string | undefined;
|
|
2339
2364
|
}
|
|
2340
|
-
export interface UpdateRuleInput {
|
|
2341
|
-
domainIdentifier: string | undefined;
|
|
2342
|
-
identifier: string | undefined;
|
|
2343
|
-
name?: string | undefined;
|
|
2344
|
-
description?: string | undefined;
|
|
2345
|
-
scope?: RuleScope | undefined;
|
|
2346
|
-
detail?: RuleDetail | undefined;
|
|
2347
|
-
includeChildDomainUnits?: boolean | undefined;
|
|
2348
|
-
}
|
|
2349
|
-
export interface UpdateRuleOutput {
|
|
2350
|
-
identifier: string | undefined;
|
|
2351
|
-
revision: string | undefined;
|
|
2352
|
-
name: string | undefined;
|
|
2353
|
-
ruleType: RuleType | undefined;
|
|
2354
|
-
target: RuleTarget | undefined;
|
|
2355
|
-
action: RuleAction | undefined;
|
|
2356
|
-
scope: RuleScope | undefined;
|
|
2357
|
-
detail: RuleDetail | undefined;
|
|
2358
|
-
description?: string | undefined;
|
|
2359
|
-
createdAt: Date | undefined;
|
|
2360
|
-
updatedAt: Date | undefined;
|
|
2361
|
-
createdBy: string | undefined;
|
|
2362
|
-
lastUpdatedBy: string | undefined;
|
|
2363
|
-
}
|
|
2364
|
-
export declare const SearchOutputAdditionalAttribute: {
|
|
2365
|
-
readonly FORMS: "FORMS";
|
|
2366
|
-
readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
|
|
2367
|
-
};
|
|
2368
|
-
export type SearchOutputAdditionalAttribute =
|
|
2369
|
-
(typeof SearchOutputAdditionalAttribute)[keyof typeof SearchOutputAdditionalAttribute];
|
|
2370
2365
|
export declare const CreateSubscriptionRequestInputFilterSensitiveLog: (
|
|
2371
2366
|
obj: CreateSubscriptionRequestInput
|
|
2372
2367
|
) => any;
|
|
@@ -2607,9 +2602,3 @@ export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
|
|
|
2607
2602
|
export declare const ListRulesOutputFilterSensitiveLog: (
|
|
2608
2603
|
obj: ListRulesOutput
|
|
2609
2604
|
) => any;
|
|
2610
|
-
export declare const UpdateRuleInputFilterSensitiveLog: (
|
|
2611
|
-
obj: UpdateRuleInput
|
|
2612
|
-
) => any;
|
|
2613
|
-
export declare const UpdateRuleOutputFilterSensitiveLog: (
|
|
2614
|
-
obj: UpdateRuleOutput
|
|
2615
|
-
) => any;
|
|
@@ -33,11 +33,15 @@ import {
|
|
|
33
33
|
ProvisioningProperties,
|
|
34
34
|
Resource,
|
|
35
35
|
RowFilterExpression,
|
|
36
|
+
RuleAction,
|
|
37
|
+
RuleDetail,
|
|
38
|
+
RuleScope,
|
|
39
|
+
RuleTarget,
|
|
40
|
+
RuleType,
|
|
36
41
|
Status,
|
|
37
42
|
SubscribedAsset,
|
|
38
43
|
SubscribedListing,
|
|
39
44
|
SubscribedPrincipal,
|
|
40
|
-
SubscriptionGrantOverallStatus,
|
|
41
45
|
SubscriptionGrantStatus,
|
|
42
46
|
SubscriptionRequestStatus,
|
|
43
47
|
TermRelations,
|
|
@@ -46,13 +50,43 @@ import {
|
|
|
46
50
|
DataProductListingItem,
|
|
47
51
|
DataProductResultItem,
|
|
48
52
|
Import,
|
|
49
|
-
SearchOutputAdditionalAttribute,
|
|
50
53
|
SortOrder,
|
|
54
|
+
SubscriptionGrantOverallStatus,
|
|
51
55
|
SubscriptionTargetForm,
|
|
52
56
|
UserProfileDetails,
|
|
53
57
|
UserProfileStatus,
|
|
54
58
|
UserProfileType,
|
|
55
59
|
} from "./models_1";
|
|
60
|
+
export interface UpdateRuleInput {
|
|
61
|
+
domainIdentifier: string | undefined;
|
|
62
|
+
identifier: string | undefined;
|
|
63
|
+
name?: string | undefined;
|
|
64
|
+
description?: string | undefined;
|
|
65
|
+
scope?: RuleScope | undefined;
|
|
66
|
+
detail?: RuleDetail | undefined;
|
|
67
|
+
includeChildDomainUnits?: boolean | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface UpdateRuleOutput {
|
|
70
|
+
identifier: string | undefined;
|
|
71
|
+
revision: string | undefined;
|
|
72
|
+
name: string | undefined;
|
|
73
|
+
ruleType: RuleType | undefined;
|
|
74
|
+
target: RuleTarget | undefined;
|
|
75
|
+
action: RuleAction | undefined;
|
|
76
|
+
scope: RuleScope | undefined;
|
|
77
|
+
detail: RuleDetail | undefined;
|
|
78
|
+
description?: string | undefined;
|
|
79
|
+
createdAt: Date | undefined;
|
|
80
|
+
updatedAt: Date | undefined;
|
|
81
|
+
createdBy: string | undefined;
|
|
82
|
+
lastUpdatedBy: string | undefined;
|
|
83
|
+
}
|
|
84
|
+
export declare const SearchOutputAdditionalAttribute: {
|
|
85
|
+
readonly FORMS: "FORMS";
|
|
86
|
+
readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
|
|
87
|
+
};
|
|
88
|
+
export type SearchOutputAdditionalAttribute =
|
|
89
|
+
(typeof SearchOutputAdditionalAttribute)[keyof typeof SearchOutputAdditionalAttribute];
|
|
56
90
|
export interface Filter {
|
|
57
91
|
attribute: string | undefined;
|
|
58
92
|
value: string | undefined;
|
|
@@ -748,6 +782,12 @@ export interface UpdateAssetFilterOutput {
|
|
|
748
782
|
effectiveColumnNames?: string[] | undefined;
|
|
749
783
|
effectiveRowFilter?: string | undefined;
|
|
750
784
|
}
|
|
785
|
+
export declare const UpdateRuleInputFilterSensitiveLog: (
|
|
786
|
+
obj: UpdateRuleInput
|
|
787
|
+
) => any;
|
|
788
|
+
export declare const UpdateRuleOutputFilterSensitiveLog: (
|
|
789
|
+
obj: UpdateRuleOutput
|
|
790
|
+
) => any;
|
|
751
791
|
export declare const GlossaryItemFilterSensitiveLog: (obj: GlossaryItem) => any;
|
|
752
792
|
export declare const GlossaryTermItemFilterSensitiveLog: (
|
|
753
793
|
obj: GlossaryTermItem
|