@aws-sdk/client-ec2 3.223.0 → 3.224.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-types/EC2.d.ts +89 -1
- package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +19 -0
- package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +17 -0
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +20 -0
- package/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +18 -0
- package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +20 -0
- package/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +17 -0
- package/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +17 -0
- package/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +17 -0
- package/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +17 -0
- package/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +17 -0
- package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +17 -0
- package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +17 -0
- package/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +21 -0
- package/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +17 -0
- package/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +17 -0
- package/dist-types/models/models_0.d.ts +126 -0
- package/dist-types/models/models_1.d.ts +6 -0
- package/dist-types/models/models_2.d.ts +318 -0
- package/dist-types/models/models_3.d.ts +60 -0
- package/dist-types/models/models_4.d.ts +207 -0
- package/dist-types/models/models_5.d.ts +57 -0
- package/dist-types/models/models_6.d.ts +231 -0
- package/package.json +30 -30
|
@@ -1745,42 +1745,147 @@ export declare enum VerifiedAccessEndpointProtocol {
|
|
|
1745
1745
|
http = "http",
|
|
1746
1746
|
https = "https"
|
|
1747
1747
|
}
|
|
1748
|
+
/**
|
|
1749
|
+
* <p>Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the
|
|
1750
|
+
* <code>load-balancer</code> type.</p>
|
|
1751
|
+
*/
|
|
1748
1752
|
export interface CreateVerifiedAccessEndpointLoadBalancerOptions {
|
|
1753
|
+
/**
|
|
1754
|
+
* <p>The IP protocol.</p>
|
|
1755
|
+
*/
|
|
1749
1756
|
Protocol?: VerifiedAccessEndpointProtocol | string;
|
|
1757
|
+
/**
|
|
1758
|
+
* <p>The IP port number.</p>
|
|
1759
|
+
*/
|
|
1750
1760
|
Port?: number;
|
|
1761
|
+
/**
|
|
1762
|
+
* <p>The ARN of the load balancer.</p>
|
|
1763
|
+
*/
|
|
1751
1764
|
LoadBalancerArn?: string;
|
|
1765
|
+
/**
|
|
1766
|
+
* <p>The IDs of the subnets.</p>
|
|
1767
|
+
*/
|
|
1752
1768
|
SubnetIds?: string[];
|
|
1753
1769
|
}
|
|
1770
|
+
/**
|
|
1771
|
+
* <p>Options for a network interface-type endpoint.</p>
|
|
1772
|
+
*/
|
|
1754
1773
|
export interface CreateVerifiedAccessEndpointEniOptions {
|
|
1774
|
+
/**
|
|
1775
|
+
* <p>The ID of the network interface.</p>
|
|
1776
|
+
*/
|
|
1755
1777
|
NetworkInterfaceId?: string;
|
|
1778
|
+
/**
|
|
1779
|
+
* <p>The IP protocol.</p>
|
|
1780
|
+
*/
|
|
1756
1781
|
Protocol?: VerifiedAccessEndpointProtocol | string;
|
|
1782
|
+
/**
|
|
1783
|
+
* <p>The IP port number.</p>
|
|
1784
|
+
*/
|
|
1757
1785
|
Port?: number;
|
|
1758
1786
|
}
|
|
1759
1787
|
export interface CreateVerifiedAccessEndpointRequest {
|
|
1788
|
+
/**
|
|
1789
|
+
* <p>The ID of the Verified Access group to associate the endpoint with.</p>
|
|
1790
|
+
*/
|
|
1760
1791
|
VerifiedAccessGroupId: string | undefined;
|
|
1792
|
+
/**
|
|
1793
|
+
* <p>The type of Amazon Web Services Verified Access endpoint to create.</p>
|
|
1794
|
+
*/
|
|
1761
1795
|
EndpointType: VerifiedAccessEndpointType | string | undefined;
|
|
1796
|
+
/**
|
|
1797
|
+
* <p>The Amazon Web Services network component Verified Access attaches to.</p>
|
|
1798
|
+
*/
|
|
1762
1799
|
AttachmentType: VerifiedAccessEndpointAttachmentType | string | undefined;
|
|
1800
|
+
/**
|
|
1801
|
+
* <p>The ARN of the public TLS/SSL certificate in Amazon Web Services Certificate Manager to associate with the endpoint.
|
|
1802
|
+
* The CN in the certificate must match the DNS name your end users will use to reach your
|
|
1803
|
+
* application.</p>
|
|
1804
|
+
*/
|
|
1763
1805
|
DomainCertificateArn: string | undefined;
|
|
1806
|
+
/**
|
|
1807
|
+
* <p>The DNS name for users to reach your application.</p>
|
|
1808
|
+
*/
|
|
1764
1809
|
ApplicationDomain: string | undefined;
|
|
1810
|
+
/**
|
|
1811
|
+
* <p>A custom identifier that gets prepended to a DNS name that is generated for the endpoint.</p>
|
|
1812
|
+
*/
|
|
1765
1813
|
EndpointDomainPrefix: string | undefined;
|
|
1814
|
+
/**
|
|
1815
|
+
* <p>The Amazon EC2 security groups to associate with the Amazon Web Services Verified Access endpoint.</p>
|
|
1816
|
+
*/
|
|
1766
1817
|
SecurityGroupIds?: string[];
|
|
1818
|
+
/**
|
|
1819
|
+
* <p>The load balancer details if creating the Amazon Web Services Verified Access endpoint as
|
|
1820
|
+
* <code>load-balancer</code>type.</p>
|
|
1821
|
+
*/
|
|
1767
1822
|
LoadBalancerOptions?: CreateVerifiedAccessEndpointLoadBalancerOptions;
|
|
1823
|
+
/**
|
|
1824
|
+
* <p>The network interface details if creating the Amazon Web Services Verified Access endpoint as
|
|
1825
|
+
* <code>network-interface</code>type.</p>
|
|
1826
|
+
*/
|
|
1768
1827
|
NetworkInterfaceOptions?: CreateVerifiedAccessEndpointEniOptions;
|
|
1828
|
+
/**
|
|
1829
|
+
* <p>A description for the Amazon Web Services Verified Access endpoint.</p>
|
|
1830
|
+
*/
|
|
1769
1831
|
Description?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
1834
|
+
*/
|
|
1770
1835
|
PolicyDocument?: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* <p>The tags to assign to the Amazon Web Services Verified Access endpoint.</p>
|
|
1838
|
+
*/
|
|
1771
1839
|
TagSpecifications?: TagSpecification[];
|
|
1840
|
+
/**
|
|
1841
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
1842
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
1843
|
+
*/
|
|
1772
1844
|
ClientToken?: string;
|
|
1845
|
+
/**
|
|
1846
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1847
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1848
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1849
|
+
*/
|
|
1773
1850
|
DryRun?: boolean;
|
|
1774
1851
|
}
|
|
1852
|
+
/**
|
|
1853
|
+
* <p>Describes a load balancer when creating an Amazon Web Services Verified Access endpoint using the
|
|
1854
|
+
* <code>load-balancer</code> type.</p>
|
|
1855
|
+
*/
|
|
1775
1856
|
export interface VerifiedAccessEndpointLoadBalancerOptions {
|
|
1857
|
+
/**
|
|
1858
|
+
* <p>The IP protocol.</p>
|
|
1859
|
+
*/
|
|
1776
1860
|
Protocol?: VerifiedAccessEndpointProtocol | string;
|
|
1861
|
+
/**
|
|
1862
|
+
* <p>The IP port number.</p>
|
|
1863
|
+
*/
|
|
1777
1864
|
Port?: number;
|
|
1865
|
+
/**
|
|
1866
|
+
* <p>The ARN of the load balancer.</p>
|
|
1867
|
+
*/
|
|
1778
1868
|
LoadBalancerArn?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* <p>The IDs of the subnets.</p>
|
|
1871
|
+
*/
|
|
1779
1872
|
SubnetIds?: string[];
|
|
1780
1873
|
}
|
|
1874
|
+
/**
|
|
1875
|
+
* <p>Options for a network-interface type endpoint.</p>
|
|
1876
|
+
*/
|
|
1781
1877
|
export interface VerifiedAccessEndpointEniOptions {
|
|
1878
|
+
/**
|
|
1879
|
+
* <p>The ID of the network interface.</p>
|
|
1880
|
+
*/
|
|
1782
1881
|
NetworkInterfaceId?: string;
|
|
1882
|
+
/**
|
|
1883
|
+
* <p>The IP protocol.</p>
|
|
1884
|
+
*/
|
|
1783
1885
|
Protocol?: VerifiedAccessEndpointProtocol | string;
|
|
1886
|
+
/**
|
|
1887
|
+
* <p>The IP port number.</p>
|
|
1888
|
+
*/
|
|
1784
1889
|
Port?: number;
|
|
1785
1890
|
}
|
|
1786
1891
|
export declare enum VerifiedAccessEndpointStatusCode {
|
|
@@ -1790,89 +1895,302 @@ export declare enum VerifiedAccessEndpointStatusCode {
|
|
|
1790
1895
|
pending = "pending",
|
|
1791
1896
|
updating = "updating"
|
|
1792
1897
|
}
|
|
1898
|
+
/**
|
|
1899
|
+
* <p>Describes the status of a Verified Access endpoint.</p>
|
|
1900
|
+
*/
|
|
1793
1901
|
export interface VerifiedAccessEndpointStatus {
|
|
1902
|
+
/**
|
|
1903
|
+
* <p>The status code of the Verified Access endpoint.</p>
|
|
1904
|
+
*/
|
|
1794
1905
|
Code?: VerifiedAccessEndpointStatusCode | string;
|
|
1906
|
+
/**
|
|
1907
|
+
* <p>The status message of the Verified Access endpoint.</p>
|
|
1908
|
+
*/
|
|
1795
1909
|
Message?: string;
|
|
1796
1910
|
}
|
|
1911
|
+
/**
|
|
1912
|
+
* <p>An Amazon Web Services Verified Access endpoint specifies the application that Amazon Web Services Verified Access provides access to. It must be
|
|
1913
|
+
* attached to an Amazon Web Services Verified Access group. An Amazon Web Services Verified Access endpoint must also have an attached access policy
|
|
1914
|
+
* before you attached it to a group.</p>
|
|
1915
|
+
*/
|
|
1797
1916
|
export interface VerifiedAccessEndpoint {
|
|
1917
|
+
/**
|
|
1918
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
1919
|
+
*/
|
|
1798
1920
|
VerifiedAccessInstanceId?: string;
|
|
1921
|
+
/**
|
|
1922
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
1923
|
+
*/
|
|
1799
1924
|
VerifiedAccessGroupId?: string;
|
|
1925
|
+
/**
|
|
1926
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
1927
|
+
*/
|
|
1800
1928
|
VerifiedAccessEndpointId?: string;
|
|
1929
|
+
/**
|
|
1930
|
+
* <p>The DNS name for users to reach your application.</p>
|
|
1931
|
+
*/
|
|
1801
1932
|
ApplicationDomain?: string;
|
|
1933
|
+
/**
|
|
1934
|
+
* <p>The type of Amazon Web Services Verified Access endpoint. Incoming application requests will be sent to an IP
|
|
1935
|
+
* address, load balancer or a network interface depending on the endpoint type
|
|
1936
|
+
* specified.</p>
|
|
1937
|
+
*/
|
|
1802
1938
|
EndpointType?: VerifiedAccessEndpointType | string;
|
|
1939
|
+
/**
|
|
1940
|
+
* <p>The type of attachment used to provide connectivity between the Amazon Web Services Verified Access endpoint and the
|
|
1941
|
+
* application.</p>
|
|
1942
|
+
*/
|
|
1803
1943
|
AttachmentType?: VerifiedAccessEndpointAttachmentType | string;
|
|
1944
|
+
/**
|
|
1945
|
+
* <p>The ARN of a public TLS/SSL certificate imported into or created with ACM.</p>
|
|
1946
|
+
*/
|
|
1804
1947
|
DomainCertificateArn?: string;
|
|
1948
|
+
/**
|
|
1949
|
+
* <p>A DNS name that is generated for the endpoint.</p>
|
|
1950
|
+
*/
|
|
1805
1951
|
EndpointDomain?: string;
|
|
1952
|
+
/**
|
|
1953
|
+
* <p>Returned if endpoint has a device trust provider attached.</p>
|
|
1954
|
+
*/
|
|
1806
1955
|
DeviceValidationDomain?: string;
|
|
1956
|
+
/**
|
|
1957
|
+
* <p>The IDs of the security groups for the endpoint.</p>
|
|
1958
|
+
*/
|
|
1807
1959
|
SecurityGroupIds?: string[];
|
|
1960
|
+
/**
|
|
1961
|
+
* <p>The load balancer details if creating the Amazon Web Services Verified Access endpoint as
|
|
1962
|
+
* <code>load-balancer</code>type.</p>
|
|
1963
|
+
*/
|
|
1808
1964
|
LoadBalancerOptions?: VerifiedAccessEndpointLoadBalancerOptions;
|
|
1965
|
+
/**
|
|
1966
|
+
* <p>The options for network-interface type endpoint.</p>
|
|
1967
|
+
*/
|
|
1809
1968
|
NetworkInterfaceOptions?: VerifiedAccessEndpointEniOptions;
|
|
1969
|
+
/**
|
|
1970
|
+
* <p>The endpoint status.</p>
|
|
1971
|
+
*/
|
|
1810
1972
|
Status?: VerifiedAccessEndpointStatus;
|
|
1973
|
+
/**
|
|
1974
|
+
* <p>A description for the Amazon Web Services Verified Access endpoint.</p>
|
|
1975
|
+
*/
|
|
1811
1976
|
Description?: string;
|
|
1977
|
+
/**
|
|
1978
|
+
* <p>The creation time.</p>
|
|
1979
|
+
*/
|
|
1812
1980
|
CreationTime?: string;
|
|
1981
|
+
/**
|
|
1982
|
+
* <p>The last updated time.</p>
|
|
1983
|
+
*/
|
|
1813
1984
|
LastUpdatedTime?: string;
|
|
1985
|
+
/**
|
|
1986
|
+
* <p>The deletion time.</p>
|
|
1987
|
+
*/
|
|
1814
1988
|
DeletionTime?: string;
|
|
1989
|
+
/**
|
|
1990
|
+
* <p>The tags.</p>
|
|
1991
|
+
*/
|
|
1815
1992
|
Tags?: Tag[];
|
|
1816
1993
|
}
|
|
1817
1994
|
export interface CreateVerifiedAccessEndpointResult {
|
|
1995
|
+
/**
|
|
1996
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
1997
|
+
*/
|
|
1818
1998
|
VerifiedAccessEndpoint?: VerifiedAccessEndpoint;
|
|
1819
1999
|
}
|
|
1820
2000
|
export interface CreateVerifiedAccessGroupRequest {
|
|
2001
|
+
/**
|
|
2002
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
2003
|
+
*/
|
|
1821
2004
|
VerifiedAccessInstanceId: string | undefined;
|
|
2005
|
+
/**
|
|
2006
|
+
* <p>A description for the Amazon Web Services Verified Access group.</p>
|
|
2007
|
+
*/
|
|
1822
2008
|
Description?: string;
|
|
2009
|
+
/**
|
|
2010
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
2011
|
+
*/
|
|
1823
2012
|
PolicyDocument?: string;
|
|
2013
|
+
/**
|
|
2014
|
+
* <p>The tags to assign to the Amazon Web Services Verified Access group.</p>
|
|
2015
|
+
*/
|
|
1824
2016
|
TagSpecifications?: TagSpecification[];
|
|
2017
|
+
/**
|
|
2018
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
2019
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
2020
|
+
*/
|
|
1825
2021
|
ClientToken?: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
2024
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
2025
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
2026
|
+
*/
|
|
1826
2027
|
DryRun?: boolean;
|
|
1827
2028
|
}
|
|
2029
|
+
/**
|
|
2030
|
+
* <p>Describes a Verified Access group.</p>
|
|
2031
|
+
*/
|
|
1828
2032
|
export interface VerifiedAccessGroup {
|
|
2033
|
+
/**
|
|
2034
|
+
* <p>The ID of the Verified Access group.</p>
|
|
2035
|
+
*/
|
|
1829
2036
|
VerifiedAccessGroupId?: string;
|
|
2037
|
+
/**
|
|
2038
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
2039
|
+
*/
|
|
1830
2040
|
VerifiedAccessInstanceId?: string;
|
|
2041
|
+
/**
|
|
2042
|
+
* <p>A description for the Amazon Web Services Verified Access group.</p>
|
|
2043
|
+
*/
|
|
1831
2044
|
Description?: string;
|
|
2045
|
+
/**
|
|
2046
|
+
* <p>The Amazon Web Services account number that owns the group.</p>
|
|
2047
|
+
*/
|
|
1832
2048
|
Owner?: string;
|
|
2049
|
+
/**
|
|
2050
|
+
* <p>The ARN of the Verified Access group.</p>
|
|
2051
|
+
*/
|
|
1833
2052
|
VerifiedAccessGroupArn?: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* <p>The creation time.</p>
|
|
2055
|
+
*/
|
|
1834
2056
|
CreationTime?: string;
|
|
2057
|
+
/**
|
|
2058
|
+
* <p>The last updated time.</p>
|
|
2059
|
+
*/
|
|
1835
2060
|
LastUpdatedTime?: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* <p>The deletion time.</p>
|
|
2063
|
+
*/
|
|
1836
2064
|
DeletionTime?: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* <p>The tags.</p>
|
|
2067
|
+
*/
|
|
1837
2068
|
Tags?: Tag[];
|
|
1838
2069
|
}
|
|
1839
2070
|
export interface CreateVerifiedAccessGroupResult {
|
|
2071
|
+
/**
|
|
2072
|
+
* <p>The ID of the Verified Access group.</p>
|
|
2073
|
+
*/
|
|
1840
2074
|
VerifiedAccessGroup?: VerifiedAccessGroup;
|
|
1841
2075
|
}
|
|
1842
2076
|
export interface CreateVerifiedAccessInstanceRequest {
|
|
2077
|
+
/**
|
|
2078
|
+
* <p>A description for the Amazon Web Services Verified Access instance.</p>
|
|
2079
|
+
*/
|
|
1843
2080
|
Description?: string;
|
|
2081
|
+
/**
|
|
2082
|
+
* <p>The tags to assign to the Amazon Web Services Verified Access instance.</p>
|
|
2083
|
+
*/
|
|
1844
2084
|
TagSpecifications?: TagSpecification[];
|
|
2085
|
+
/**
|
|
2086
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
2087
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
2088
|
+
*/
|
|
1845
2089
|
ClientToken?: string;
|
|
2090
|
+
/**
|
|
2091
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
2092
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
2093
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
2094
|
+
*/
|
|
1846
2095
|
DryRun?: boolean;
|
|
1847
2096
|
}
|
|
1848
2097
|
export interface CreateVerifiedAccessInstanceResult {
|
|
2098
|
+
/**
|
|
2099
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
2100
|
+
*/
|
|
1849
2101
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
1850
2102
|
}
|
|
2103
|
+
/**
|
|
2104
|
+
* <p>Options for a device-identity type trust provider.</p>
|
|
2105
|
+
*/
|
|
1851
2106
|
export interface CreateVerifiedAccessTrustProviderDeviceOptions {
|
|
2107
|
+
/**
|
|
2108
|
+
* <p>The ID of the tenant application with the device-identity provider.</p>
|
|
2109
|
+
*/
|
|
1852
2110
|
TenantId?: string;
|
|
1853
2111
|
}
|
|
2112
|
+
/**
|
|
2113
|
+
* <p>Options for an OIDC-based, user-identity type trust provider.</p>
|
|
2114
|
+
*/
|
|
1854
2115
|
export interface CreateVerifiedAccessTrustProviderOidcOptions {
|
|
2116
|
+
/**
|
|
2117
|
+
* <p>The OIDC issuer.</p>
|
|
2118
|
+
*/
|
|
1855
2119
|
Issuer?: string;
|
|
2120
|
+
/**
|
|
2121
|
+
* <p>The OIDC authorization endpoint.</p>
|
|
2122
|
+
*/
|
|
1856
2123
|
AuthorizationEndpoint?: string;
|
|
2124
|
+
/**
|
|
2125
|
+
* <p>The OIDC token endpoint.</p>
|
|
2126
|
+
*/
|
|
1857
2127
|
TokenEndpoint?: string;
|
|
2128
|
+
/**
|
|
2129
|
+
* <p>The OIDC user info endpoint.</p>
|
|
2130
|
+
*/
|
|
1858
2131
|
UserInfoEndpoint?: string;
|
|
2132
|
+
/**
|
|
2133
|
+
* <p>The client identifier.</p>
|
|
2134
|
+
*/
|
|
1859
2135
|
ClientId?: string;
|
|
2136
|
+
/**
|
|
2137
|
+
* <p>The client secret.</p>
|
|
2138
|
+
*/
|
|
1860
2139
|
ClientSecret?: string;
|
|
2140
|
+
/**
|
|
2141
|
+
* <p>OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.</p>
|
|
2142
|
+
*/
|
|
1861
2143
|
Scope?: string;
|
|
1862
2144
|
}
|
|
1863
2145
|
export interface CreateVerifiedAccessTrustProviderRequest {
|
|
2146
|
+
/**
|
|
2147
|
+
* <p>The type of trust provider can be either user or device-based.</p>
|
|
2148
|
+
*/
|
|
1864
2149
|
TrustProviderType: TrustProviderType | string | undefined;
|
|
2150
|
+
/**
|
|
2151
|
+
* <p>The type of user-based trust provider.</p>
|
|
2152
|
+
*/
|
|
1865
2153
|
UserTrustProviderType?: UserTrustProviderType | string;
|
|
2154
|
+
/**
|
|
2155
|
+
* <p>The type of device-based trust provider.</p>
|
|
2156
|
+
*/
|
|
1866
2157
|
DeviceTrustProviderType?: DeviceTrustProviderType | string;
|
|
2158
|
+
/**
|
|
2159
|
+
* <p>The OpenID Connect details for an <code>oidc</code>-type, user-identity based trust provider.</p>
|
|
2160
|
+
*/
|
|
1867
2161
|
OidcOptions?: CreateVerifiedAccessTrustProviderOidcOptions;
|
|
2162
|
+
/**
|
|
2163
|
+
* <p>The options for device identity based trust providers.</p>
|
|
2164
|
+
*/
|
|
1868
2165
|
DeviceOptions?: CreateVerifiedAccessTrustProviderDeviceOptions;
|
|
2166
|
+
/**
|
|
2167
|
+
* <p>The identifier to be used when working with policy rules.</p>
|
|
2168
|
+
*/
|
|
1869
2169
|
PolicyReferenceName: string | undefined;
|
|
2170
|
+
/**
|
|
2171
|
+
* <p>A description for the Amazon Web Services Verified Access trust provider.</p>
|
|
2172
|
+
*/
|
|
1870
2173
|
Description?: string;
|
|
2174
|
+
/**
|
|
2175
|
+
* <p>The tags to assign to the Amazon Web Services Verified Access trust provider.</p>
|
|
2176
|
+
*/
|
|
1871
2177
|
TagSpecifications?: TagSpecification[];
|
|
2178
|
+
/**
|
|
2179
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
2180
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
2181
|
+
*/
|
|
1872
2182
|
ClientToken?: string;
|
|
2183
|
+
/**
|
|
2184
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
2185
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
2186
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
2187
|
+
*/
|
|
1873
2188
|
DryRun?: boolean;
|
|
1874
2189
|
}
|
|
1875
2190
|
export interface CreateVerifiedAccessTrustProviderResult {
|
|
2191
|
+
/**
|
|
2192
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
2193
|
+
*/
|
|
1876
2194
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
1877
2195
|
}
|
|
1878
2196
|
export interface CreateVolumeRequest {
|
|
@@ -62,35 +62,95 @@ export interface DeleteTransitGatewayVpcAttachmentResult {
|
|
|
62
62
|
TransitGatewayVpcAttachment?: TransitGatewayVpcAttachment;
|
|
63
63
|
}
|
|
64
64
|
export interface DeleteVerifiedAccessEndpointRequest {
|
|
65
|
+
/**
|
|
66
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
67
|
+
*/
|
|
65
68
|
VerifiedAccessEndpointId: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
71
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
72
|
+
*/
|
|
66
73
|
ClientToken?: string;
|
|
74
|
+
/**
|
|
75
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
76
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
77
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
78
|
+
*/
|
|
67
79
|
DryRun?: boolean;
|
|
68
80
|
}
|
|
69
81
|
export interface DeleteVerifiedAccessEndpointResult {
|
|
82
|
+
/**
|
|
83
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
84
|
+
*/
|
|
70
85
|
VerifiedAccessEndpoint?: VerifiedAccessEndpoint;
|
|
71
86
|
}
|
|
72
87
|
export interface DeleteVerifiedAccessGroupRequest {
|
|
88
|
+
/**
|
|
89
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
90
|
+
*/
|
|
73
91
|
VerifiedAccessGroupId: string | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
94
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
95
|
+
*/
|
|
74
96
|
ClientToken?: string;
|
|
97
|
+
/**
|
|
98
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
99
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
100
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
101
|
+
*/
|
|
75
102
|
DryRun?: boolean;
|
|
76
103
|
}
|
|
77
104
|
export interface DeleteVerifiedAccessGroupResult {
|
|
105
|
+
/**
|
|
106
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
107
|
+
*/
|
|
78
108
|
VerifiedAccessGroup?: VerifiedAccessGroup;
|
|
79
109
|
}
|
|
80
110
|
export interface DeleteVerifiedAccessInstanceRequest {
|
|
111
|
+
/**
|
|
112
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
113
|
+
*/
|
|
81
114
|
VerifiedAccessInstanceId: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
117
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
118
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
119
|
+
*/
|
|
82
120
|
DryRun?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
123
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
124
|
+
*/
|
|
83
125
|
ClientToken?: string;
|
|
84
126
|
}
|
|
85
127
|
export interface DeleteVerifiedAccessInstanceResult {
|
|
128
|
+
/**
|
|
129
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
130
|
+
*/
|
|
86
131
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
87
132
|
}
|
|
88
133
|
export interface DeleteVerifiedAccessTrustProviderRequest {
|
|
134
|
+
/**
|
|
135
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
136
|
+
*/
|
|
89
137
|
VerifiedAccessTrustProviderId: string | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
140
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
141
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
142
|
+
*/
|
|
90
143
|
DryRun?: boolean;
|
|
144
|
+
/**
|
|
145
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
146
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
147
|
+
*/
|
|
91
148
|
ClientToken?: string;
|
|
92
149
|
}
|
|
93
150
|
export interface DeleteVerifiedAccessTrustProviderResult {
|
|
151
|
+
/**
|
|
152
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
153
|
+
*/
|
|
94
154
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
95
155
|
}
|
|
96
156
|
export interface DeleteVolumeRequest {
|