@aws-sdk/client-datazone 3.995.0 → 3.997.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 +17 -18
- package/dist-cjs/schemas/schemas_0.js +36 -9
- package/dist-es/schemas/schemas_0.js +31 -4
- package/dist-types/commands/CreateConnectionCommand.d.ts +8 -0
- package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataProductCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +4 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +4 -0
- package/dist-types/commands/SearchTypesCommand.d.ts +1 -2
- package/dist-types/commands/SearchUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +161 -78
- package/dist-types/models/models_1.d.ts +76 -97
- package/dist-types/models/models_2.d.ts +98 -2
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteDataProductCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchTypesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +124 -21
- package/dist-types/ts3.4/models/models_1.d.ts +19 -24
- package/dist-types/ts3.4/models/models_2.d.ts +30 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +38 -38
|
@@ -1,6 +1,102 @@
|
|
|
1
|
-
import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType } from "./enums";
|
|
1
|
+
import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType, UserSearchType } from "./enums";
|
|
2
2
|
import { type AccountSource, type ActionParameters, type AwsLocation, type ConnectionPropertiesOutput, type ConnectionPropertiesPatch, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type FailureCause, type GrantedEntity, type ProvisioningProperties, type UserProfileDetails, AggregationListItem, ColumnFilterConfiguration, ConfigurableEnvironmentAction, CustomParameter, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentParameter, FormOutput, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm } from "./models_0";
|
|
3
|
-
import { type SearchSort, Filter, SearchInItem } from "./models_1";
|
|
3
|
+
import { type SearchSort, Filter, SearchInItem, SearchTypesResultItem } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface SearchTypesOutput {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The results of the <code>SearchTypes</code> action.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
items?: SearchTypesResultItem[] | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>When the number of results is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchTypes</code> to list the next set of results.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
nextToken?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>Total number of search results.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
totalMatchCount?: number | undefined;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export interface SearchUserProfilesInput {
|
|
28
|
+
/**
|
|
29
|
+
* <p>The identifier of the Amazon DataZone domain in which you want to search user profiles.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
domainIdentifier: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>Specifies the user type for the <code>SearchUserProfiles</code> action.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
userType: UserSearchType | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>Specifies the text for which to search.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
searchText?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The maximum number of results to return in a single call to <code>SearchUserProfiles</code>. When the number of results to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>SearchUserProfiles</code> to list the next set of results. </p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
maxResults?: number | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>When the number of results is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchUserProfiles</code> to list the next set of results.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
nextToken?: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>The details of the user profile.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export interface UserProfileSummary {
|
|
59
|
+
/**
|
|
60
|
+
* <p>The ID of the Amazon DataZone domain of the user profile.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
domainId?: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The ID of the user profile.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
id?: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The type of the user profile.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
type?: UserProfileType | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* <p>The status of the user profile.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
status?: UserProfileStatus | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* <p>The details of the user profile.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
details?: UserProfileDetails | undefined;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export interface SearchUserProfilesOutput {
|
|
89
|
+
/**
|
|
90
|
+
* <p>The results of the <code>SearchUserProfiles</code> action.</p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
items?: UserProfileSummary[] | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* <p>When the number of results is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchUserProfiles</code> to list the next set of results.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
nextToken?: string | undefined;
|
|
99
|
+
}
|
|
4
100
|
/**
|
|
5
101
|
* @public
|
|
6
102
|
*/
|
|
@@ -612,6 +612,10 @@ export declare var UseAssetTypePolicyGrantDetail$: StaticStructureSchema;
|
|
|
612
612
|
export declare var UserDetails$: StaticStructureSchema;
|
|
613
613
|
export declare var UsernamePassword$: StaticStructureSchema;
|
|
614
614
|
export declare var UserProfileSummary$: StaticStructureSchema;
|
|
615
|
+
export declare var WorkflowsMwaaPropertiesInput$: StaticStructureSchema;
|
|
616
|
+
export declare var WorkflowsMwaaPropertiesOutput$: StaticStructureSchema;
|
|
617
|
+
export declare var WorkflowsServerlessPropertiesInput$: StaticStructureSchema;
|
|
618
|
+
export declare var WorkflowsServerlessPropertiesOutput$: StaticStructureSchema;
|
|
615
619
|
export declare var AccountSource$: StaticUnionSchema;
|
|
616
620
|
export declare var ActionParameters$: StaticUnionSchema;
|
|
617
621
|
export declare var AssetFilterConfiguration$: StaticUnionSchema;
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateUserProfileInput,
|
|
10
10
|
CreateUserProfileOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface CreateUserProfileCommandInput extends CreateUserProfileInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DeleteDataProductInput,
|
|
10
10
|
DeleteDataProductOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DeleteDataProductCommandInput extends DeleteDataProductInput {}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import { SearchTypesOutput } from "../models/
|
|
9
|
-
import { SearchTypesInput } from "../models/models_2";
|
|
8
|
+
import { SearchTypesInput, SearchTypesOutput } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface SearchTypesCommandInput extends SearchTypesInput {}
|
|
@@ -59,9 +59,6 @@ import {
|
|
|
59
59
|
Timezone,
|
|
60
60
|
UserAssignment,
|
|
61
61
|
UserDesignation,
|
|
62
|
-
UserProfileStatus,
|
|
63
|
-
UserProfileType,
|
|
64
|
-
UserType,
|
|
65
62
|
} from "./enums";
|
|
66
63
|
export interface AcceptChoice {
|
|
67
64
|
predictionTarget: string | undefined;
|
|
@@ -1817,6 +1814,10 @@ export interface SparkGluePropertiesInput {
|
|
|
1817
1814
|
pythonVirtualEnv?: string | undefined;
|
|
1818
1815
|
workerType?: string | undefined;
|
|
1819
1816
|
}
|
|
1817
|
+
export interface WorkflowsMwaaPropertiesInput {
|
|
1818
|
+
mwaaEnvironmentName?: string | undefined;
|
|
1819
|
+
}
|
|
1820
|
+
export interface WorkflowsServerlessPropertiesInput {}
|
|
1820
1821
|
export type ConnectionPropertiesInput =
|
|
1821
1822
|
| ConnectionPropertiesInput.AmazonQPropertiesMember
|
|
1822
1823
|
| ConnectionPropertiesInput.AthenaPropertiesMember
|
|
@@ -1828,6 +1829,8 @@ export type ConnectionPropertiesInput =
|
|
|
1828
1829
|
| ConnectionPropertiesInput.S3PropertiesMember
|
|
1829
1830
|
| ConnectionPropertiesInput.SparkEmrPropertiesMember
|
|
1830
1831
|
| ConnectionPropertiesInput.SparkGluePropertiesMember
|
|
1832
|
+
| ConnectionPropertiesInput.WorkflowsMwaaPropertiesMember
|
|
1833
|
+
| ConnectionPropertiesInput.WorkflowsServerlessPropertiesMember
|
|
1831
1834
|
| ConnectionPropertiesInput.$UnknownMember;
|
|
1832
1835
|
export declare namespace ConnectionPropertiesInput {
|
|
1833
1836
|
interface AthenaPropertiesMember {
|
|
@@ -1841,6 +1844,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1841
1844
|
s3Properties?: never;
|
|
1842
1845
|
amazonQProperties?: never;
|
|
1843
1846
|
mlflowProperties?: never;
|
|
1847
|
+
workflowsMwaaProperties?: never;
|
|
1848
|
+
workflowsServerlessProperties?: never;
|
|
1844
1849
|
$unknown?: never;
|
|
1845
1850
|
}
|
|
1846
1851
|
interface GluePropertiesMember {
|
|
@@ -1854,6 +1859,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1854
1859
|
s3Properties?: never;
|
|
1855
1860
|
amazonQProperties?: never;
|
|
1856
1861
|
mlflowProperties?: never;
|
|
1862
|
+
workflowsMwaaProperties?: never;
|
|
1863
|
+
workflowsServerlessProperties?: never;
|
|
1857
1864
|
$unknown?: never;
|
|
1858
1865
|
}
|
|
1859
1866
|
interface HyperPodPropertiesMember {
|
|
@@ -1867,6 +1874,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1867
1874
|
s3Properties?: never;
|
|
1868
1875
|
amazonQProperties?: never;
|
|
1869
1876
|
mlflowProperties?: never;
|
|
1877
|
+
workflowsMwaaProperties?: never;
|
|
1878
|
+
workflowsServerlessProperties?: never;
|
|
1870
1879
|
$unknown?: never;
|
|
1871
1880
|
}
|
|
1872
1881
|
interface IamPropertiesMember {
|
|
@@ -1880,6 +1889,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1880
1889
|
s3Properties?: never;
|
|
1881
1890
|
amazonQProperties?: never;
|
|
1882
1891
|
mlflowProperties?: never;
|
|
1892
|
+
workflowsMwaaProperties?: never;
|
|
1893
|
+
workflowsServerlessProperties?: never;
|
|
1883
1894
|
$unknown?: never;
|
|
1884
1895
|
}
|
|
1885
1896
|
interface RedshiftPropertiesMember {
|
|
@@ -1893,6 +1904,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1893
1904
|
s3Properties?: never;
|
|
1894
1905
|
amazonQProperties?: never;
|
|
1895
1906
|
mlflowProperties?: never;
|
|
1907
|
+
workflowsMwaaProperties?: never;
|
|
1908
|
+
workflowsServerlessProperties?: never;
|
|
1896
1909
|
$unknown?: never;
|
|
1897
1910
|
}
|
|
1898
1911
|
interface SparkEmrPropertiesMember {
|
|
@@ -1906,6 +1919,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1906
1919
|
s3Properties?: never;
|
|
1907
1920
|
amazonQProperties?: never;
|
|
1908
1921
|
mlflowProperties?: never;
|
|
1922
|
+
workflowsMwaaProperties?: never;
|
|
1923
|
+
workflowsServerlessProperties?: never;
|
|
1909
1924
|
$unknown?: never;
|
|
1910
1925
|
}
|
|
1911
1926
|
interface SparkGluePropertiesMember {
|
|
@@ -1919,6 +1934,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1919
1934
|
s3Properties?: never;
|
|
1920
1935
|
amazonQProperties?: never;
|
|
1921
1936
|
mlflowProperties?: never;
|
|
1937
|
+
workflowsMwaaProperties?: never;
|
|
1938
|
+
workflowsServerlessProperties?: never;
|
|
1922
1939
|
$unknown?: never;
|
|
1923
1940
|
}
|
|
1924
1941
|
interface S3PropertiesMember {
|
|
@@ -1932,6 +1949,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1932
1949
|
s3Properties: S3PropertiesInput;
|
|
1933
1950
|
amazonQProperties?: never;
|
|
1934
1951
|
mlflowProperties?: never;
|
|
1952
|
+
workflowsMwaaProperties?: never;
|
|
1953
|
+
workflowsServerlessProperties?: never;
|
|
1935
1954
|
$unknown?: never;
|
|
1936
1955
|
}
|
|
1937
1956
|
interface AmazonQPropertiesMember {
|
|
@@ -1945,6 +1964,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1945
1964
|
s3Properties?: never;
|
|
1946
1965
|
amazonQProperties: AmazonQPropertiesInput;
|
|
1947
1966
|
mlflowProperties?: never;
|
|
1967
|
+
workflowsMwaaProperties?: never;
|
|
1968
|
+
workflowsServerlessProperties?: never;
|
|
1948
1969
|
$unknown?: never;
|
|
1949
1970
|
}
|
|
1950
1971
|
interface MlflowPropertiesMember {
|
|
@@ -1958,6 +1979,38 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1958
1979
|
s3Properties?: never;
|
|
1959
1980
|
amazonQProperties?: never;
|
|
1960
1981
|
mlflowProperties: MlflowPropertiesInput;
|
|
1982
|
+
workflowsMwaaProperties?: never;
|
|
1983
|
+
workflowsServerlessProperties?: never;
|
|
1984
|
+
$unknown?: never;
|
|
1985
|
+
}
|
|
1986
|
+
interface WorkflowsMwaaPropertiesMember {
|
|
1987
|
+
athenaProperties?: never;
|
|
1988
|
+
glueProperties?: never;
|
|
1989
|
+
hyperPodProperties?: never;
|
|
1990
|
+
iamProperties?: never;
|
|
1991
|
+
redshiftProperties?: never;
|
|
1992
|
+
sparkEmrProperties?: never;
|
|
1993
|
+
sparkGlueProperties?: never;
|
|
1994
|
+
s3Properties?: never;
|
|
1995
|
+
amazonQProperties?: never;
|
|
1996
|
+
mlflowProperties?: never;
|
|
1997
|
+
workflowsMwaaProperties: WorkflowsMwaaPropertiesInput;
|
|
1998
|
+
workflowsServerlessProperties?: never;
|
|
1999
|
+
$unknown?: never;
|
|
2000
|
+
}
|
|
2001
|
+
interface WorkflowsServerlessPropertiesMember {
|
|
2002
|
+
athenaProperties?: never;
|
|
2003
|
+
glueProperties?: never;
|
|
2004
|
+
hyperPodProperties?: never;
|
|
2005
|
+
iamProperties?: never;
|
|
2006
|
+
redshiftProperties?: never;
|
|
2007
|
+
sparkEmrProperties?: never;
|
|
2008
|
+
sparkGlueProperties?: never;
|
|
2009
|
+
s3Properties?: never;
|
|
2010
|
+
amazonQProperties?: never;
|
|
2011
|
+
mlflowProperties?: never;
|
|
2012
|
+
workflowsMwaaProperties?: never;
|
|
2013
|
+
workflowsServerlessProperties: WorkflowsServerlessPropertiesInput;
|
|
1961
2014
|
$unknown?: never;
|
|
1962
2015
|
}
|
|
1963
2016
|
interface $UnknownMember {
|
|
@@ -1971,6 +2024,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1971
2024
|
s3Properties?: never;
|
|
1972
2025
|
amazonQProperties?: never;
|
|
1973
2026
|
mlflowProperties?: never;
|
|
2027
|
+
workflowsMwaaProperties?: never;
|
|
2028
|
+
workflowsServerlessProperties?: never;
|
|
1974
2029
|
$unknown: [string, any];
|
|
1975
2030
|
}
|
|
1976
2031
|
interface Visitor<T> {
|
|
@@ -1984,6 +2039,10 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
1984
2039
|
s3Properties: (value: S3PropertiesInput) => T;
|
|
1985
2040
|
amazonQProperties: (value: AmazonQPropertiesInput) => T;
|
|
1986
2041
|
mlflowProperties: (value: MlflowPropertiesInput) => T;
|
|
2042
|
+
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesInput) => T;
|
|
2043
|
+
workflowsServerlessProperties: (
|
|
2044
|
+
value: WorkflowsServerlessPropertiesInput
|
|
2045
|
+
) => T;
|
|
1987
2046
|
_: (name: string, value: any) => T;
|
|
1988
2047
|
}
|
|
1989
2048
|
}
|
|
@@ -2055,6 +2114,10 @@ export interface SparkGluePropertiesOutput {
|
|
|
2055
2114
|
pythonVirtualEnv?: string | undefined;
|
|
2056
2115
|
workerType?: string | undefined;
|
|
2057
2116
|
}
|
|
2117
|
+
export interface WorkflowsMwaaPropertiesOutput {
|
|
2118
|
+
mwaaEnvironmentName?: string | undefined;
|
|
2119
|
+
}
|
|
2120
|
+
export interface WorkflowsServerlessPropertiesOutput {}
|
|
2058
2121
|
export type ConnectionPropertiesOutput =
|
|
2059
2122
|
| ConnectionPropertiesOutput.AmazonQPropertiesMember
|
|
2060
2123
|
| ConnectionPropertiesOutput.AthenaPropertiesMember
|
|
@@ -2066,6 +2129,8 @@ export type ConnectionPropertiesOutput =
|
|
|
2066
2129
|
| ConnectionPropertiesOutput.S3PropertiesMember
|
|
2067
2130
|
| ConnectionPropertiesOutput.SparkEmrPropertiesMember
|
|
2068
2131
|
| ConnectionPropertiesOutput.SparkGluePropertiesMember
|
|
2132
|
+
| ConnectionPropertiesOutput.WorkflowsMwaaPropertiesMember
|
|
2133
|
+
| ConnectionPropertiesOutput.WorkflowsServerlessPropertiesMember
|
|
2069
2134
|
| ConnectionPropertiesOutput.$UnknownMember;
|
|
2070
2135
|
export declare namespace ConnectionPropertiesOutput {
|
|
2071
2136
|
interface AthenaPropertiesMember {
|
|
@@ -2079,6 +2144,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2079
2144
|
s3Properties?: never;
|
|
2080
2145
|
amazonQProperties?: never;
|
|
2081
2146
|
mlflowProperties?: never;
|
|
2147
|
+
workflowsMwaaProperties?: never;
|
|
2148
|
+
workflowsServerlessProperties?: never;
|
|
2082
2149
|
$unknown?: never;
|
|
2083
2150
|
}
|
|
2084
2151
|
interface GluePropertiesMember {
|
|
@@ -2092,6 +2159,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2092
2159
|
s3Properties?: never;
|
|
2093
2160
|
amazonQProperties?: never;
|
|
2094
2161
|
mlflowProperties?: never;
|
|
2162
|
+
workflowsMwaaProperties?: never;
|
|
2163
|
+
workflowsServerlessProperties?: never;
|
|
2095
2164
|
$unknown?: never;
|
|
2096
2165
|
}
|
|
2097
2166
|
interface HyperPodPropertiesMember {
|
|
@@ -2105,6 +2174,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2105
2174
|
s3Properties?: never;
|
|
2106
2175
|
amazonQProperties?: never;
|
|
2107
2176
|
mlflowProperties?: never;
|
|
2177
|
+
workflowsMwaaProperties?: never;
|
|
2178
|
+
workflowsServerlessProperties?: never;
|
|
2108
2179
|
$unknown?: never;
|
|
2109
2180
|
}
|
|
2110
2181
|
interface IamPropertiesMember {
|
|
@@ -2118,6 +2189,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2118
2189
|
s3Properties?: never;
|
|
2119
2190
|
amazonQProperties?: never;
|
|
2120
2191
|
mlflowProperties?: never;
|
|
2192
|
+
workflowsMwaaProperties?: never;
|
|
2193
|
+
workflowsServerlessProperties?: never;
|
|
2121
2194
|
$unknown?: never;
|
|
2122
2195
|
}
|
|
2123
2196
|
interface RedshiftPropertiesMember {
|
|
@@ -2131,6 +2204,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2131
2204
|
s3Properties?: never;
|
|
2132
2205
|
amazonQProperties?: never;
|
|
2133
2206
|
mlflowProperties?: never;
|
|
2207
|
+
workflowsMwaaProperties?: never;
|
|
2208
|
+
workflowsServerlessProperties?: never;
|
|
2134
2209
|
$unknown?: never;
|
|
2135
2210
|
}
|
|
2136
2211
|
interface SparkEmrPropertiesMember {
|
|
@@ -2144,6 +2219,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2144
2219
|
s3Properties?: never;
|
|
2145
2220
|
amazonQProperties?: never;
|
|
2146
2221
|
mlflowProperties?: never;
|
|
2222
|
+
workflowsMwaaProperties?: never;
|
|
2223
|
+
workflowsServerlessProperties?: never;
|
|
2147
2224
|
$unknown?: never;
|
|
2148
2225
|
}
|
|
2149
2226
|
interface SparkGluePropertiesMember {
|
|
@@ -2157,6 +2234,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2157
2234
|
s3Properties?: never;
|
|
2158
2235
|
amazonQProperties?: never;
|
|
2159
2236
|
mlflowProperties?: never;
|
|
2237
|
+
workflowsMwaaProperties?: never;
|
|
2238
|
+
workflowsServerlessProperties?: never;
|
|
2160
2239
|
$unknown?: never;
|
|
2161
2240
|
}
|
|
2162
2241
|
interface S3PropertiesMember {
|
|
@@ -2170,6 +2249,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2170
2249
|
s3Properties: S3PropertiesOutput;
|
|
2171
2250
|
amazonQProperties?: never;
|
|
2172
2251
|
mlflowProperties?: never;
|
|
2252
|
+
workflowsMwaaProperties?: never;
|
|
2253
|
+
workflowsServerlessProperties?: never;
|
|
2173
2254
|
$unknown?: never;
|
|
2174
2255
|
}
|
|
2175
2256
|
interface AmazonQPropertiesMember {
|
|
@@ -2183,6 +2264,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2183
2264
|
s3Properties?: never;
|
|
2184
2265
|
amazonQProperties: AmazonQPropertiesOutput;
|
|
2185
2266
|
mlflowProperties?: never;
|
|
2267
|
+
workflowsMwaaProperties?: never;
|
|
2268
|
+
workflowsServerlessProperties?: never;
|
|
2186
2269
|
$unknown?: never;
|
|
2187
2270
|
}
|
|
2188
2271
|
interface MlflowPropertiesMember {
|
|
@@ -2196,6 +2279,38 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2196
2279
|
s3Properties?: never;
|
|
2197
2280
|
amazonQProperties?: never;
|
|
2198
2281
|
mlflowProperties: MlflowPropertiesOutput;
|
|
2282
|
+
workflowsMwaaProperties?: never;
|
|
2283
|
+
workflowsServerlessProperties?: never;
|
|
2284
|
+
$unknown?: never;
|
|
2285
|
+
}
|
|
2286
|
+
interface WorkflowsMwaaPropertiesMember {
|
|
2287
|
+
athenaProperties?: never;
|
|
2288
|
+
glueProperties?: never;
|
|
2289
|
+
hyperPodProperties?: never;
|
|
2290
|
+
iamProperties?: never;
|
|
2291
|
+
redshiftProperties?: never;
|
|
2292
|
+
sparkEmrProperties?: never;
|
|
2293
|
+
sparkGlueProperties?: never;
|
|
2294
|
+
s3Properties?: never;
|
|
2295
|
+
amazonQProperties?: never;
|
|
2296
|
+
mlflowProperties?: never;
|
|
2297
|
+
workflowsMwaaProperties: WorkflowsMwaaPropertiesOutput;
|
|
2298
|
+
workflowsServerlessProperties?: never;
|
|
2299
|
+
$unknown?: never;
|
|
2300
|
+
}
|
|
2301
|
+
interface WorkflowsServerlessPropertiesMember {
|
|
2302
|
+
athenaProperties?: never;
|
|
2303
|
+
glueProperties?: never;
|
|
2304
|
+
hyperPodProperties?: never;
|
|
2305
|
+
iamProperties?: never;
|
|
2306
|
+
redshiftProperties?: never;
|
|
2307
|
+
sparkEmrProperties?: never;
|
|
2308
|
+
sparkGlueProperties?: never;
|
|
2309
|
+
s3Properties?: never;
|
|
2310
|
+
amazonQProperties?: never;
|
|
2311
|
+
mlflowProperties?: never;
|
|
2312
|
+
workflowsMwaaProperties?: never;
|
|
2313
|
+
workflowsServerlessProperties: WorkflowsServerlessPropertiesOutput;
|
|
2199
2314
|
$unknown?: never;
|
|
2200
2315
|
}
|
|
2201
2316
|
interface $UnknownMember {
|
|
@@ -2209,6 +2324,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2209
2324
|
s3Properties?: never;
|
|
2210
2325
|
amazonQProperties?: never;
|
|
2211
2326
|
mlflowProperties?: never;
|
|
2327
|
+
workflowsMwaaProperties?: never;
|
|
2328
|
+
workflowsServerlessProperties?: never;
|
|
2212
2329
|
$unknown: [string, any];
|
|
2213
2330
|
}
|
|
2214
2331
|
interface Visitor<T> {
|
|
@@ -2222,6 +2339,10 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
2222
2339
|
s3Properties: (value: S3PropertiesOutput) => T;
|
|
2223
2340
|
amazonQProperties: (value: AmazonQPropertiesOutput) => T;
|
|
2224
2341
|
mlflowProperties: (value: MlflowPropertiesOutput) => T;
|
|
2342
|
+
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesOutput) => T;
|
|
2343
|
+
workflowsServerlessProperties: (
|
|
2344
|
+
value: WorkflowsServerlessPropertiesOutput
|
|
2345
|
+
) => T;
|
|
2225
2346
|
_: (name: string, value: any) => T;
|
|
2226
2347
|
}
|
|
2227
2348
|
}
|
|
@@ -3517,21 +3638,3 @@ export interface CreateSubscriptionTargetOutput {
|
|
|
3517
3638
|
provider: string | undefined;
|
|
3518
3639
|
subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
|
|
3519
3640
|
}
|
|
3520
|
-
export interface CreateUserProfileInput {
|
|
3521
|
-
domainIdentifier: string | undefined;
|
|
3522
|
-
userIdentifier: string | undefined;
|
|
3523
|
-
userType?: UserType | undefined;
|
|
3524
|
-
clientToken?: string | undefined;
|
|
3525
|
-
}
|
|
3526
|
-
export interface CreateUserProfileOutput {
|
|
3527
|
-
domainId?: string | undefined;
|
|
3528
|
-
id?: string | undefined;
|
|
3529
|
-
type?: UserProfileType | undefined;
|
|
3530
|
-
status?: UserProfileStatus | undefined;
|
|
3531
|
-
details?: UserProfileDetails | undefined;
|
|
3532
|
-
}
|
|
3533
|
-
export interface DeleteDataProductInput {
|
|
3534
|
-
domainIdentifier: string | undefined;
|
|
3535
|
-
identifier: string | undefined;
|
|
3536
|
-
}
|
|
3537
|
-
export interface DeleteDataProductOutput {}
|
|
@@ -59,7 +59,7 @@ import {
|
|
|
59
59
|
UserDesignation,
|
|
60
60
|
UserProfileStatus,
|
|
61
61
|
UserProfileType,
|
|
62
|
-
|
|
62
|
+
UserType,
|
|
63
63
|
} from "./enums";
|
|
64
64
|
import {
|
|
65
65
|
AccountSource,
|
|
@@ -119,6 +119,24 @@ import {
|
|
|
119
119
|
SubscriptionTargetForm,
|
|
120
120
|
TimeSeriesDataPointSummaryFormOutput,
|
|
121
121
|
} from "./models_0";
|
|
122
|
+
export interface CreateUserProfileInput {
|
|
123
|
+
domainIdentifier: string | undefined;
|
|
124
|
+
userIdentifier: string | undefined;
|
|
125
|
+
userType?: UserType | undefined;
|
|
126
|
+
clientToken?: string | undefined;
|
|
127
|
+
}
|
|
128
|
+
export interface CreateUserProfileOutput {
|
|
129
|
+
domainId?: string | undefined;
|
|
130
|
+
id?: string | undefined;
|
|
131
|
+
type?: UserProfileType | undefined;
|
|
132
|
+
status?: UserProfileStatus | undefined;
|
|
133
|
+
details?: UserProfileDetails | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface DeleteDataProductInput {
|
|
136
|
+
domainIdentifier: string | undefined;
|
|
137
|
+
identifier: string | undefined;
|
|
138
|
+
}
|
|
139
|
+
export interface DeleteDataProductOutput {}
|
|
122
140
|
export interface GetDataProductInput {
|
|
123
141
|
domainIdentifier: string | undefined;
|
|
124
142
|
identifier: string | undefined;
|
|
@@ -2436,26 +2454,3 @@ export declare namespace SearchTypesResultItem {
|
|
|
2436
2454
|
_: (name: string, value: any) => T;
|
|
2437
2455
|
}
|
|
2438
2456
|
}
|
|
2439
|
-
export interface SearchTypesOutput {
|
|
2440
|
-
items?: SearchTypesResultItem[] | undefined;
|
|
2441
|
-
nextToken?: string | undefined;
|
|
2442
|
-
totalMatchCount?: number | undefined;
|
|
2443
|
-
}
|
|
2444
|
-
export interface SearchUserProfilesInput {
|
|
2445
|
-
domainIdentifier: string | undefined;
|
|
2446
|
-
userType: UserSearchType | undefined;
|
|
2447
|
-
searchText?: string | undefined;
|
|
2448
|
-
maxResults?: number | undefined;
|
|
2449
|
-
nextToken?: string | undefined;
|
|
2450
|
-
}
|
|
2451
|
-
export interface UserProfileSummary {
|
|
2452
|
-
domainId?: string | undefined;
|
|
2453
|
-
id?: string | undefined;
|
|
2454
|
-
type?: UserProfileType | undefined;
|
|
2455
|
-
status?: UserProfileStatus | undefined;
|
|
2456
|
-
details?: UserProfileDetails | undefined;
|
|
2457
|
-
}
|
|
2458
|
-
export interface SearchUserProfilesOutput {
|
|
2459
|
-
items?: UserProfileSummary[] | undefined;
|
|
2460
|
-
nextToken?: string | undefined;
|
|
2461
|
-
}
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
TypesSearchScope,
|
|
17
17
|
UserProfileStatus,
|
|
18
18
|
UserProfileType,
|
|
19
|
+
UserSearchType,
|
|
19
20
|
} from "./enums";
|
|
20
21
|
import {
|
|
21
22
|
AccountSource,
|
|
@@ -49,7 +50,35 @@ import {
|
|
|
49
50
|
SubscribedPrincipal,
|
|
50
51
|
SubscriptionTargetForm,
|
|
51
52
|
} from "./models_0";
|
|
52
|
-
import {
|
|
53
|
+
import {
|
|
54
|
+
SearchSort,
|
|
55
|
+
Filter,
|
|
56
|
+
SearchInItem,
|
|
57
|
+
SearchTypesResultItem,
|
|
58
|
+
} from "./models_1";
|
|
59
|
+
export interface SearchTypesOutput {
|
|
60
|
+
items?: SearchTypesResultItem[] | undefined;
|
|
61
|
+
nextToken?: string | undefined;
|
|
62
|
+
totalMatchCount?: number | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface SearchUserProfilesInput {
|
|
65
|
+
domainIdentifier: string | undefined;
|
|
66
|
+
userType: UserSearchType | undefined;
|
|
67
|
+
searchText?: string | undefined;
|
|
68
|
+
maxResults?: number | undefined;
|
|
69
|
+
nextToken?: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface UserProfileSummary {
|
|
72
|
+
domainId?: string | undefined;
|
|
73
|
+
id?: string | undefined;
|
|
74
|
+
type?: UserProfileType | undefined;
|
|
75
|
+
status?: UserProfileStatus | undefined;
|
|
76
|
+
details?: UserProfileDetails | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface SearchUserProfilesOutput {
|
|
79
|
+
items?: UserProfileSummary[] | undefined;
|
|
80
|
+
nextToken?: string | undefined;
|
|
81
|
+
}
|
|
53
82
|
export interface TagResourceRequest {
|
|
54
83
|
resourceArn: string | undefined;
|
|
55
84
|
tags: Record<string, string> | undefined;
|
|
@@ -612,6 +612,10 @@ export declare var UseAssetTypePolicyGrantDetail$: StaticStructureSchema;
|
|
|
612
612
|
export declare var UserDetails$: StaticStructureSchema;
|
|
613
613
|
export declare var UsernamePassword$: StaticStructureSchema;
|
|
614
614
|
export declare var UserProfileSummary$: StaticStructureSchema;
|
|
615
|
+
export declare var WorkflowsMwaaPropertiesInput$: StaticStructureSchema;
|
|
616
|
+
export declare var WorkflowsMwaaPropertiesOutput$: StaticStructureSchema;
|
|
617
|
+
export declare var WorkflowsServerlessPropertiesInput$: StaticStructureSchema;
|
|
618
|
+
export declare var WorkflowsServerlessPropertiesOutput$: StaticStructureSchema;
|
|
615
619
|
export declare var AccountSource$: StaticUnionSchema;
|
|
616
620
|
export declare var ActionParameters$: StaticUnionSchema;
|
|
617
621
|
export declare var AssetFilterConfiguration$: StaticUnionSchema;
|