@aws-sdk/client-ec2 3.316.0 → 3.319.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/commands/AttachVerifiedAccessTrustProviderCommand.js +2 -1
- package/dist-cjs/commands/CreateVerifiedAccessTrustProviderCommand.js +3 -2
- package/dist-cjs/commands/DeleteVerifiedAccessTrustProviderCommand.js +2 -1
- package/dist-cjs/commands/DescribeConversionTasksCommand.js +2 -1
- package/dist-cjs/commands/DescribeVerifiedAccessTrustProvidersCommand.js +2 -1
- package/dist-cjs/commands/DetachVerifiedAccessTrustProviderCommand.js +2 -1
- package/dist-cjs/commands/ImportInstanceCommand.js +1 -1
- package/dist-cjs/commands/ImportVolumeCommand.js +1 -1
- package/dist-cjs/commands/ModifyVerifiedAccessTrustProviderCommand.js +3 -2
- package/dist-cjs/models/models_0.js +18 -1
- package/dist-cjs/models/models_2.js +22 -1
- package/dist-cjs/models/models_3.js +44 -1
- package/dist-cjs/models/models_4.js +9 -1
- package/dist-cjs/models/models_5.js +15 -1
- package/dist-cjs/models/models_6.js +27 -1
- package/dist-cjs/protocols/Aws_ec2.js +18 -0
- package/dist-es/commands/AttachVerifiedAccessTrustProviderCommand.js +2 -1
- package/dist-es/commands/CreateVerifiedAccessTrustProviderCommand.js +3 -2
- package/dist-es/commands/DeleteVerifiedAccessTrustProviderCommand.js +2 -1
- package/dist-es/commands/DescribeConversionTasksCommand.js +2 -1
- package/dist-es/commands/DescribeVerifiedAccessTrustProvidersCommand.js +2 -1
- package/dist-es/commands/DetachVerifiedAccessTrustProviderCommand.js +2 -1
- package/dist-es/commands/ImportInstanceCommand.js +2 -2
- package/dist-es/commands/ImportVolumeCommand.js +2 -2
- package/dist-es/commands/ModifyVerifiedAccessTrustProviderCommand.js +3 -2
- package/dist-es/models/models_0.js +14 -0
- package/dist-es/models/models_2.js +18 -0
- package/dist-es/models/models_3.js +35 -0
- package/dist-es/models/models_4.js +7 -0
- package/dist-es/models/models_5.js +12 -0
- package/dist-es/models/models_6.js +22 -0
- package/dist-es/protocols/Aws_ec2.js +18 -0
- package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +1 -3
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +3 -3
- package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +1 -1
- package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +21 -8
- package/dist-types/models/models_2.d.ts +51 -31
- package/dist-types/models/models_3.d.ts +36 -8
- package/dist-types/models/models_4.d.ts +16 -12
- package/dist-types/models/models_5.d.ts +16 -8
- package/dist-types/models/models_6.d.ts +68 -28
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/dist-types/ts3.4/models/models_2.d.ts +9 -0
- package/dist-types/ts3.4/models/models_3.d.ts +21 -0
- package/dist-types/ts3.4/models/models_4.d.ts +3 -0
- package/dist-types/ts3.4/models/models_5.d.ts +6 -0
- package/dist-types/ts3.4/models/models_6.d.ts +18 -0
- package/package.json +6 -6
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VerifiedAccessTrustProviderFilterSensitiveLog, } from "./models_0";
|
|
1
3
|
export const RouteOrigin = {
|
|
2
4
|
CreateRoute: "CreateRoute",
|
|
3
5
|
CreateRouteTable: "CreateRouteTable",
|
|
@@ -278,3 +280,19 @@ export const DeleteQueuedReservedInstancesErrorCode = {
|
|
|
278
280
|
RESERVED_INSTANCES_NOT_IN_QUEUED_STATE: "reserved-instances-not-in-queued-state",
|
|
279
281
|
UNEXPECTED_ERROR: "unexpected-error",
|
|
280
282
|
};
|
|
283
|
+
export const CreateVerifiedAccessTrustProviderOidcOptionsFilterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
|
|
286
|
+
});
|
|
287
|
+
export const CreateVerifiedAccessTrustProviderRequestFilterSensitiveLog = (obj) => ({
|
|
288
|
+
...obj,
|
|
289
|
+
...(obj.OidcOptions && {
|
|
290
|
+
OidcOptions: CreateVerifiedAccessTrustProviderOidcOptionsFilterSensitiveLog(obj.OidcOptions),
|
|
291
|
+
}),
|
|
292
|
+
});
|
|
293
|
+
export const CreateVerifiedAccessTrustProviderResultFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
...(obj.VerifiedAccessTrustProvider && {
|
|
296
|
+
VerifiedAccessTrustProvider: VerifiedAccessTrustProviderFilterSensitiveLog(obj.VerifiedAccessTrustProvider),
|
|
297
|
+
}),
|
|
298
|
+
});
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VerifiedAccessTrustProviderFilterSensitiveLog, } from "./models_0";
|
|
1
3
|
export const IpamPoolCidrFailureCode = {
|
|
2
4
|
cidr_not_available: "cidr-not-available",
|
|
3
5
|
limit_exceeded: "limit-exceeded",
|
|
@@ -239,3 +241,36 @@ export const MonitoringState = {
|
|
|
239
241
|
enabled: "enabled",
|
|
240
242
|
pending: "pending",
|
|
241
243
|
};
|
|
244
|
+
export const DeleteVerifiedAccessTrustProviderResultFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
...(obj.VerifiedAccessTrustProvider && {
|
|
247
|
+
VerifiedAccessTrustProvider: VerifiedAccessTrustProviderFilterSensitiveLog(obj.VerifiedAccessTrustProvider),
|
|
248
|
+
}),
|
|
249
|
+
});
|
|
250
|
+
export const DiskImageDescriptionFilterSensitiveLog = (obj) => ({
|
|
251
|
+
...obj,
|
|
252
|
+
...(obj.ImportManifestUrl && { ImportManifestUrl: SENSITIVE_STRING }),
|
|
253
|
+
});
|
|
254
|
+
export const ImportInstanceVolumeDetailItemFilterSensitiveLog = (obj) => ({
|
|
255
|
+
...obj,
|
|
256
|
+
...(obj.Image && { Image: DiskImageDescriptionFilterSensitiveLog(obj.Image) }),
|
|
257
|
+
});
|
|
258
|
+
export const ImportInstanceTaskDetailsFilterSensitiveLog = (obj) => ({
|
|
259
|
+
...obj,
|
|
260
|
+
...(obj.Volumes && { Volumes: obj.Volumes.map((item) => ImportInstanceVolumeDetailItemFilterSensitiveLog(item)) }),
|
|
261
|
+
});
|
|
262
|
+
export const ImportVolumeTaskDetailsFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
...(obj.Image && { Image: DiskImageDescriptionFilterSensitiveLog(obj.Image) }),
|
|
265
|
+
});
|
|
266
|
+
export const ConversionTaskFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
...(obj.ImportInstance && { ImportInstance: ImportInstanceTaskDetailsFilterSensitiveLog(obj.ImportInstance) }),
|
|
269
|
+
...(obj.ImportVolume && { ImportVolume: ImportVolumeTaskDetailsFilterSensitiveLog(obj.ImportVolume) }),
|
|
270
|
+
});
|
|
271
|
+
export const DescribeConversionTasksResultFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
...(obj.ConversionTasks && {
|
|
274
|
+
ConversionTasks: obj.ConversionTasks.map((item) => ConversionTaskFilterSensitiveLog(item)),
|
|
275
|
+
}),
|
|
276
|
+
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VerifiedAccessTrustProviderFilterSensitiveLog, } from "./models_0";
|
|
2
3
|
import { LaunchTemplateVersionFilterSensitiveLog, } from "./models_1";
|
|
3
4
|
export const InstanceStateName = {
|
|
4
5
|
pending: "pending",
|
|
@@ -238,3 +239,9 @@ export const DescribeSpotInstanceRequestsResultFilterSensitiveLog = (obj) => ({
|
|
|
238
239
|
SpotInstanceRequests: obj.SpotInstanceRequests.map((item) => SpotInstanceRequestFilterSensitiveLog(item)),
|
|
239
240
|
}),
|
|
240
241
|
});
|
|
242
|
+
export const DescribeVerifiedAccessTrustProvidersResultFilterSensitiveLog = (obj) => ({
|
|
243
|
+
...obj,
|
|
244
|
+
...(obj.VerifiedAccessTrustProviders && {
|
|
245
|
+
VerifiedAccessTrustProviders: obj.VerifiedAccessTrustProviders.map((item) => VerifiedAccessTrustProviderFilterSensitiveLog(item)),
|
|
246
|
+
}),
|
|
247
|
+
});
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VerifiedAccessTrustProviderFilterSensitiveLog, } from "./models_0";
|
|
2
3
|
import { ResponseLaunchTemplateDataFilterSensitiveLog, } from "./models_1";
|
|
4
|
+
import { ConversionTaskFilterSensitiveLog, } from "./models_3";
|
|
3
5
|
export const VolumeModificationState = {
|
|
4
6
|
completed: "completed",
|
|
5
7
|
failed: "failed",
|
|
@@ -77,6 +79,12 @@ export const IpamManagementState = {
|
|
|
77
79
|
managed: "managed",
|
|
78
80
|
unmanaged: "unmanaged",
|
|
79
81
|
};
|
|
82
|
+
export const DetachVerifiedAccessTrustProviderResultFilterSensitiveLog = (obj) => ({
|
|
83
|
+
...obj,
|
|
84
|
+
...(obj.VerifiedAccessTrustProvider && {
|
|
85
|
+
VerifiedAccessTrustProvider: VerifiedAccessTrustProviderFilterSensitiveLog(obj.VerifiedAccessTrustProvider),
|
|
86
|
+
}),
|
|
87
|
+
});
|
|
80
88
|
export const GetLaunchTemplateDataResultFilterSensitiveLog = (obj) => ({
|
|
81
89
|
...obj,
|
|
82
90
|
...(obj.LaunchTemplateData && {
|
|
@@ -109,3 +117,7 @@ export const ImportInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
|
109
117
|
LaunchSpecification: ImportInstanceLaunchSpecificationFilterSensitiveLog(obj.LaunchSpecification),
|
|
110
118
|
}),
|
|
111
119
|
});
|
|
120
|
+
export const ImportInstanceResultFilterSensitiveLog = (obj) => ({
|
|
121
|
+
...obj,
|
|
122
|
+
...(obj.ConversionTask && { ConversionTask: ConversionTaskFilterSensitiveLog(obj.ConversionTask) }),
|
|
123
|
+
});
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { VerifiedAccessTrustProviderFilterSensitiveLog, } from "./models_0";
|
|
3
|
+
import { ConversionTaskFilterSensitiveLog, } from "./models_3";
|
|
2
4
|
import { SpotFleetRequestConfigDataFilterSensitiveLog, SpotInstanceRequestFilterSensitiveLog, } from "./models_4";
|
|
3
5
|
import { DiskImageDetailFilterSensitiveLog, } from "./models_5";
|
|
4
6
|
export const ModifyAvailabilityZoneOptInStatus = {
|
|
@@ -70,6 +72,26 @@ export const ImportVolumeRequestFilterSensitiveLog = (obj) => ({
|
|
|
70
72
|
...obj,
|
|
71
73
|
...(obj.Image && { Image: DiskImageDetailFilterSensitiveLog(obj.Image) }),
|
|
72
74
|
});
|
|
75
|
+
export const ImportVolumeResultFilterSensitiveLog = (obj) => ({
|
|
76
|
+
...obj,
|
|
77
|
+
...(obj.ConversionTask && { ConversionTask: ConversionTaskFilterSensitiveLog(obj.ConversionTask) }),
|
|
78
|
+
});
|
|
79
|
+
export const ModifyVerifiedAccessTrustProviderOidcOptionsFilterSensitiveLog = (obj) => ({
|
|
80
|
+
...obj,
|
|
81
|
+
...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
|
|
82
|
+
});
|
|
83
|
+
export const ModifyVerifiedAccessTrustProviderRequestFilterSensitiveLog = (obj) => ({
|
|
84
|
+
...obj,
|
|
85
|
+
...(obj.OidcOptions && {
|
|
86
|
+
OidcOptions: ModifyVerifiedAccessTrustProviderOidcOptionsFilterSensitiveLog(obj.OidcOptions),
|
|
87
|
+
}),
|
|
88
|
+
});
|
|
89
|
+
export const ModifyVerifiedAccessTrustProviderResultFilterSensitiveLog = (obj) => ({
|
|
90
|
+
...obj,
|
|
91
|
+
...(obj.VerifiedAccessTrustProvider && {
|
|
92
|
+
VerifiedAccessTrustProvider: VerifiedAccessTrustProviderFilterSensitiveLog(obj.VerifiedAccessTrustProvider),
|
|
93
|
+
}),
|
|
94
|
+
});
|
|
73
95
|
export const RequestSpotFleetRequestFilterSensitiveLog = (obj) => ({
|
|
74
96
|
...obj,
|
|
75
97
|
...(obj.SpotFleetRequestConfig && {
|
|
@@ -37646,6 +37646,24 @@ const se_ModifyVerifiedAccessInstanceRequest = (input, context) => {
|
|
|
37646
37646
|
};
|
|
37647
37647
|
const se_ModifyVerifiedAccessTrustProviderOidcOptions = (input, context) => {
|
|
37648
37648
|
const entries = {};
|
|
37649
|
+
if (input.Issuer != null) {
|
|
37650
|
+
entries["Issuer"] = input.Issuer;
|
|
37651
|
+
}
|
|
37652
|
+
if (input.AuthorizationEndpoint != null) {
|
|
37653
|
+
entries["AuthorizationEndpoint"] = input.AuthorizationEndpoint;
|
|
37654
|
+
}
|
|
37655
|
+
if (input.TokenEndpoint != null) {
|
|
37656
|
+
entries["TokenEndpoint"] = input.TokenEndpoint;
|
|
37657
|
+
}
|
|
37658
|
+
if (input.UserInfoEndpoint != null) {
|
|
37659
|
+
entries["UserInfoEndpoint"] = input.UserInfoEndpoint;
|
|
37660
|
+
}
|
|
37661
|
+
if (input.ClientId != null) {
|
|
37662
|
+
entries["ClientId"] = input.ClientId;
|
|
37663
|
+
}
|
|
37664
|
+
if (input.ClientSecret != null) {
|
|
37665
|
+
entries["ClientSecret"] = input.ClientSecret;
|
|
37666
|
+
}
|
|
37649
37667
|
if (input.Scope != null) {
|
|
37650
37668
|
entries["Scope"] = input.Scope;
|
|
37651
37669
|
}
|
|
@@ -19,9 +19,7 @@ export interface AttachVerifiedAccessTrustProviderCommandOutput extends AttachVe
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
23
|
-
* information for users and devices. One or more trust providers can be attached to an Amazon Web Services Verified Access
|
|
24
|
-
* instance.</p>
|
|
22
|
+
* <p>Attaches the specified Amazon Web Services Verified Access trust provider to the specified Amazon Web Services Verified Access instance.</p>
|
|
25
23
|
* @example
|
|
26
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
27
25
|
* ```javascript
|
|
@@ -20,9 +20,9 @@ export interface CreateVerifiedAccessGroupCommandOutput extends CreateVerifiedAc
|
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
22
|
* <p>An Amazon Web Services Verified Access group is a collection of Amazon Web Services Verified Access endpoints who's associated applications have
|
|
23
|
-
* similar security requirements. Each instance within
|
|
24
|
-
* example, you can group all
|
|
25
|
-
* use one common
|
|
23
|
+
* similar security requirements. Each instance within a Verified Access group shares an Verified Access policy. For
|
|
24
|
+
* example, you can group all Verified Access instances associated with "sales" applications together and
|
|
25
|
+
* use one common Verified Access policy.</p>
|
|
26
26
|
* @example
|
|
27
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
28
28
|
* ```javascript
|
|
@@ -21,7 +21,7 @@ export interface CreateVerifiedAccessTrustProviderCommandOutput extends CreateVe
|
|
|
21
21
|
* @public
|
|
22
22
|
* <p>A trust provider is a third-party entity that creates, maintains, and manages identity
|
|
23
23
|
* information for users and devices. When an application request is made, the identity
|
|
24
|
-
* information sent by the trust provider
|
|
24
|
+
* information sent by the trust provider is evaluated by Verified Access before allowing or
|
|
25
25
|
* denying the application request.</p>
|
|
26
26
|
* @example
|
|
27
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -19,7 +19,7 @@ export interface DescribeVerifiedAccessEndpointsCommandOutput extends DescribeVe
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
22
|
+
* <p>Describes the specified Amazon Web Services Verified Access endpoints.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface DescribeVerifiedAccessGroupsCommandOutput extends DescribeVerif
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
22
|
+
* <p>Describes the specified Verified Access groups.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface DescribeVerifiedAccessInstanceLoggingConfigurationsCommandOutpu
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Describes the
|
|
22
|
+
* <p>Describes the specified Amazon Web Services Verified Access instances.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface DescribeVerifiedAccessInstancesCommandOutput extends DescribeVe
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
22
|
+
* <p>Describes the specified Amazon Web Services Verified Access instances.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface DescribeVerifiedAccessTrustProvidersCommandOutput extends Descr
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
22
|
+
* <p>Describes the specified Amazon Web Services Verified Access trust providers.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface DetachVerifiedAccessTrustProviderCommandOutput extends DetachVe
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>
|
|
22
|
+
* <p>Detaches the specified Amazon Web Services Verified Access trust provider from the specified Amazon Web Services Verified Access instance.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface ModifyVerifiedAccessEndpointCommandOutput extends ModifyVerifie
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Modifies the configuration of
|
|
22
|
+
* <p>Modifies the configuration of the specified Amazon Web Services Verified Access endpoint.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface ModifyVerifiedAccessEndpointPolicyCommandOutput extends ModifyV
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Modifies the specified Verified Access endpoint policy.</p>
|
|
22
|
+
* <p>Modifies the specified Amazon Web Services Verified Access endpoint policy.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface ModifyVerifiedAccessGroupCommandOutput extends ModifyVerifiedAc
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Modifies the specified Verified Access group configuration.</p>
|
|
22
|
+
* <p>Modifies the specified Amazon Web Services Verified Access group configuration.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface ModifyVerifiedAccessGroupPolicyCommandOutput extends ModifyVeri
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Modifies the specified Verified Access group policy.</p>
|
|
22
|
+
* <p>Modifies the specified Amazon Web Services Verified Access group policy.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -19,7 +19,7 @@ export interface ModifyVerifiedAccessInstanceCommandOutput extends ModifyVerifie
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>Modifies the configuration of the specified Verified Access instance.</p>
|
|
22
|
+
* <p>Modifies the configuration of the specified Amazon Web Services Verified Access instance.</p>
|
|
23
23
|
* @example
|
|
24
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
25
25
|
* ```javascript
|
|
@@ -29,6 +29,12 @@ export interface ModifyVerifiedAccessTrustProviderCommandOutput extends ModifyVe
|
|
|
29
29
|
* const input = { // ModifyVerifiedAccessTrustProviderRequest
|
|
30
30
|
* VerifiedAccessTrustProviderId: "STRING_VALUE", // required
|
|
31
31
|
* OidcOptions: { // ModifyVerifiedAccessTrustProviderOidcOptions
|
|
32
|
+
* Issuer: "STRING_VALUE",
|
|
33
|
+
* AuthorizationEndpoint: "STRING_VALUE",
|
|
34
|
+
* TokenEndpoint: "STRING_VALUE",
|
|
35
|
+
* UserInfoEndpoint: "STRING_VALUE",
|
|
36
|
+
* ClientId: "STRING_VALUE",
|
|
37
|
+
* ClientSecret: "STRING_VALUE",
|
|
32
38
|
* Scope: "STRING_VALUE",
|
|
33
39
|
* },
|
|
34
40
|
* Description: "STRING_VALUE",
|
|
@@ -4243,11 +4243,11 @@ export interface AttachNetworkInterfaceResult {
|
|
|
4243
4243
|
*/
|
|
4244
4244
|
export interface AttachVerifiedAccessTrustProviderRequest {
|
|
4245
4245
|
/**
|
|
4246
|
-
* <p>The ID of the
|
|
4246
|
+
* <p>The ID of the Verified Access instance.</p>
|
|
4247
4247
|
*/
|
|
4248
4248
|
VerifiedAccessInstanceId: string | undefined;
|
|
4249
4249
|
/**
|
|
4250
|
-
* <p>The ID of the
|
|
4250
|
+
* <p>The ID of the Verified Access trust provider.</p>
|
|
4251
4251
|
*/
|
|
4252
4252
|
VerifiedAccessTrustProviderId: string | undefined;
|
|
4253
4253
|
/**
|
|
@@ -4356,7 +4356,7 @@ export interface VerifiedAccessInstance {
|
|
|
4356
4356
|
}
|
|
4357
4357
|
/**
|
|
4358
4358
|
* @public
|
|
4359
|
-
* <p>
|
|
4359
|
+
* <p>Describes the options for an Amazon Web Services Verified Access device-identity based trust provider.</p>
|
|
4360
4360
|
*/
|
|
4361
4361
|
export interface DeviceOptions {
|
|
4362
4362
|
/**
|
|
@@ -4366,7 +4366,8 @@ export interface DeviceOptions {
|
|
|
4366
4366
|
}
|
|
4367
4367
|
/**
|
|
4368
4368
|
* @public
|
|
4369
|
-
* <p>
|
|
4369
|
+
* <p>Describes the options for an OpenID Connect-compatible user-identity trust
|
|
4370
|
+
* provider.</p>
|
|
4370
4371
|
*/
|
|
4371
4372
|
export interface OidcOptions {
|
|
4372
4373
|
/**
|
|
@@ -4424,11 +4425,11 @@ export interface VerifiedAccessTrustProvider {
|
|
|
4424
4425
|
*/
|
|
4425
4426
|
DeviceTrustProviderType?: DeviceTrustProviderType | string;
|
|
4426
4427
|
/**
|
|
4427
|
-
* <p>The
|
|
4428
|
+
* <p>The options for an OpenID Connect-compatible user-identity trust provider.</p>
|
|
4428
4429
|
*/
|
|
4429
4430
|
OidcOptions?: OidcOptions;
|
|
4430
4431
|
/**
|
|
4431
|
-
* <p>The options for device-identity
|
|
4432
|
+
* <p>The options for device-identity trust provider.</p>
|
|
4432
4433
|
*/
|
|
4433
4434
|
DeviceOptions?: DeviceOptions;
|
|
4434
4435
|
/**
|
|
@@ -4453,11 +4454,11 @@ export interface VerifiedAccessTrustProvider {
|
|
|
4453
4454
|
*/
|
|
4454
4455
|
export interface AttachVerifiedAccessTrustProviderResult {
|
|
4455
4456
|
/**
|
|
4456
|
-
* <p>The ID of the
|
|
4457
|
+
* <p>The ID of the Verified Access trust provider.</p>
|
|
4457
4458
|
*/
|
|
4458
4459
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
4459
4460
|
/**
|
|
4460
|
-
* <p>The ID of the
|
|
4461
|
+
* <p>The ID of the Verified Access instance.</p>
|
|
4461
4462
|
*/
|
|
4462
4463
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
4463
4464
|
}
|
|
@@ -7434,6 +7435,18 @@ export interface CertificateAuthenticationRequest {
|
|
|
7434
7435
|
*/
|
|
7435
7436
|
ClientRootCertificateChainArn?: string;
|
|
7436
7437
|
}
|
|
7438
|
+
/**
|
|
7439
|
+
* @internal
|
|
7440
|
+
*/
|
|
7441
|
+
export declare const OidcOptionsFilterSensitiveLog: (obj: OidcOptions) => any;
|
|
7442
|
+
/**
|
|
7443
|
+
* @internal
|
|
7444
|
+
*/
|
|
7445
|
+
export declare const VerifiedAccessTrustProviderFilterSensitiveLog: (obj: VerifiedAccessTrustProvider) => any;
|
|
7446
|
+
/**
|
|
7447
|
+
* @internal
|
|
7448
|
+
*/
|
|
7449
|
+
export declare const AttachVerifiedAccessTrustProviderResultFilterSensitiveLog: (obj: AttachVerifiedAccessTrustProviderResult) => any;
|
|
7437
7450
|
/**
|
|
7438
7451
|
* @internal
|
|
7439
7452
|
*/
|
|
@@ -2826,7 +2826,7 @@ export declare const VerifiedAccessEndpointProtocol: {
|
|
|
2826
2826
|
export type VerifiedAccessEndpointProtocol = (typeof VerifiedAccessEndpointProtocol)[keyof typeof VerifiedAccessEndpointProtocol];
|
|
2827
2827
|
/**
|
|
2828
2828
|
* @public
|
|
2829
|
-
* <p>Describes
|
|
2829
|
+
* <p>Describes the load balancer options when creating an Amazon Web Services Verified Access endpoint using the
|
|
2830
2830
|
* <code>load-balancer</code> type.</p>
|
|
2831
2831
|
*/
|
|
2832
2832
|
export interface CreateVerifiedAccessEndpointLoadBalancerOptions {
|
|
@@ -2849,7 +2849,8 @@ export interface CreateVerifiedAccessEndpointLoadBalancerOptions {
|
|
|
2849
2849
|
}
|
|
2850
2850
|
/**
|
|
2851
2851
|
* @public
|
|
2852
|
-
* <p>
|
|
2852
|
+
* <p>Describes the network interface options when creating an Amazon Web Services Verified Access endpoint using the
|
|
2853
|
+
* <code>network-interface</code> type.</p>
|
|
2853
2854
|
*/
|
|
2854
2855
|
export interface CreateVerifiedAccessEndpointEniOptions {
|
|
2855
2856
|
/**
|
|
@@ -2874,11 +2875,11 @@ export interface CreateVerifiedAccessEndpointRequest {
|
|
|
2874
2875
|
*/
|
|
2875
2876
|
VerifiedAccessGroupId: string | undefined;
|
|
2876
2877
|
/**
|
|
2877
|
-
* <p>The type of
|
|
2878
|
+
* <p>The type of Verified Access endpoint to create.</p>
|
|
2878
2879
|
*/
|
|
2879
2880
|
EndpointType: VerifiedAccessEndpointType | string | undefined;
|
|
2880
2881
|
/**
|
|
2881
|
-
* <p>The
|
|
2882
|
+
* <p>The type of attachment.</p>
|
|
2882
2883
|
*/
|
|
2883
2884
|
AttachmentType: VerifiedAccessEndpointAttachmentType | string | undefined;
|
|
2884
2885
|
/**
|
|
@@ -2892,33 +2893,34 @@ export interface CreateVerifiedAccessEndpointRequest {
|
|
|
2892
2893
|
*/
|
|
2893
2894
|
ApplicationDomain: string | undefined;
|
|
2894
2895
|
/**
|
|
2895
|
-
* <p>A custom identifier that
|
|
2896
|
+
* <p>A custom identifier that is prepended to the DNS name that is generated for the
|
|
2897
|
+
* endpoint.</p>
|
|
2896
2898
|
*/
|
|
2897
2899
|
EndpointDomainPrefix: string | undefined;
|
|
2898
2900
|
/**
|
|
2899
|
-
* <p>The
|
|
2901
|
+
* <p>The IDs of the security groups to associate with the Verified Access endpoint.</p>
|
|
2900
2902
|
*/
|
|
2901
2903
|
SecurityGroupIds?: string[];
|
|
2902
2904
|
/**
|
|
2903
|
-
* <p>The load balancer details
|
|
2904
|
-
*
|
|
2905
|
+
* <p>The load balancer details. This parameter is required if the endpoint type is
|
|
2906
|
+
* <code>load-balancer</code>.</p>
|
|
2905
2907
|
*/
|
|
2906
2908
|
LoadBalancerOptions?: CreateVerifiedAccessEndpointLoadBalancerOptions;
|
|
2907
2909
|
/**
|
|
2908
|
-
* <p>The network interface details
|
|
2909
|
-
* <code>network-interface</code
|
|
2910
|
+
* <p>The network interface details. This parameter is required if the endpoint type is
|
|
2911
|
+
* <code>network-interface</code>.</p>
|
|
2910
2912
|
*/
|
|
2911
2913
|
NetworkInterfaceOptions?: CreateVerifiedAccessEndpointEniOptions;
|
|
2912
2914
|
/**
|
|
2913
|
-
* <p>A description for the
|
|
2915
|
+
* <p>A description for the Verified Access endpoint.</p>
|
|
2914
2916
|
*/
|
|
2915
2917
|
Description?: string;
|
|
2916
2918
|
/**
|
|
2917
|
-
* <p>The
|
|
2919
|
+
* <p>The Verified Access policy document.</p>
|
|
2918
2920
|
*/
|
|
2919
2921
|
PolicyDocument?: string;
|
|
2920
2922
|
/**
|
|
2921
|
-
* <p>The tags to assign to the
|
|
2923
|
+
* <p>The tags to assign to the Verified Access endpoint.</p>
|
|
2922
2924
|
*/
|
|
2923
2925
|
TagSpecifications?: TagSpecification[];
|
|
2924
2926
|
/**
|
|
@@ -3092,7 +3094,7 @@ export interface VerifiedAccessEndpoint {
|
|
|
3092
3094
|
*/
|
|
3093
3095
|
export interface CreateVerifiedAccessEndpointResult {
|
|
3094
3096
|
/**
|
|
3095
|
-
* <p>The ID of the
|
|
3097
|
+
* <p>The ID of the Verified Access endpoint.</p>
|
|
3096
3098
|
*/
|
|
3097
3099
|
VerifiedAccessEndpoint?: VerifiedAccessEndpoint;
|
|
3098
3100
|
}
|
|
@@ -3101,19 +3103,19 @@ export interface CreateVerifiedAccessEndpointResult {
|
|
|
3101
3103
|
*/
|
|
3102
3104
|
export interface CreateVerifiedAccessGroupRequest {
|
|
3103
3105
|
/**
|
|
3104
|
-
* <p>The ID of the
|
|
3106
|
+
* <p>The ID of the Verified Access instance.</p>
|
|
3105
3107
|
*/
|
|
3106
3108
|
VerifiedAccessInstanceId: string | undefined;
|
|
3107
3109
|
/**
|
|
3108
|
-
* <p>A description for the
|
|
3110
|
+
* <p>A description for the Verified Access group.</p>
|
|
3109
3111
|
*/
|
|
3110
3112
|
Description?: string;
|
|
3111
3113
|
/**
|
|
3112
|
-
* <p>The
|
|
3114
|
+
* <p>The Verified Access policy document.</p>
|
|
3113
3115
|
*/
|
|
3114
3116
|
PolicyDocument?: string;
|
|
3115
3117
|
/**
|
|
3116
|
-
* <p>The tags to assign to the
|
|
3118
|
+
* <p>The tags to assign to the Verified Access group.</p>
|
|
3117
3119
|
*/
|
|
3118
3120
|
TagSpecifications?: TagSpecification[];
|
|
3119
3121
|
/**
|
|
@@ -3184,11 +3186,11 @@ export interface CreateVerifiedAccessGroupResult {
|
|
|
3184
3186
|
*/
|
|
3185
3187
|
export interface CreateVerifiedAccessInstanceRequest {
|
|
3186
3188
|
/**
|
|
3187
|
-
* <p>A description for the
|
|
3189
|
+
* <p>A description for the Verified Access instance.</p>
|
|
3188
3190
|
*/
|
|
3189
3191
|
Description?: string;
|
|
3190
3192
|
/**
|
|
3191
|
-
* <p>The tags to assign to the
|
|
3193
|
+
* <p>The tags to assign to the Verified Access instance.</p>
|
|
3192
3194
|
*/
|
|
3193
3195
|
TagSpecifications?: TagSpecification[];
|
|
3194
3196
|
/**
|
|
@@ -3208,13 +3210,14 @@ export interface CreateVerifiedAccessInstanceRequest {
|
|
|
3208
3210
|
*/
|
|
3209
3211
|
export interface CreateVerifiedAccessInstanceResult {
|
|
3210
3212
|
/**
|
|
3211
|
-
* <p>The ID of the
|
|
3213
|
+
* <p>The ID of the Verified Access instance.</p>
|
|
3212
3214
|
*/
|
|
3213
3215
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
3214
3216
|
}
|
|
3215
3217
|
/**
|
|
3216
3218
|
* @public
|
|
3217
|
-
* <p>
|
|
3219
|
+
* <p>Describes the options when creating an Amazon Web Services Verified Access trust provider using the
|
|
3220
|
+
* <code>device</code> type.</p>
|
|
3218
3221
|
*/
|
|
3219
3222
|
export interface CreateVerifiedAccessTrustProviderDeviceOptions {
|
|
3220
3223
|
/**
|
|
@@ -3224,7 +3227,8 @@ export interface CreateVerifiedAccessTrustProviderDeviceOptions {
|
|
|
3224
3227
|
}
|
|
3225
3228
|
/**
|
|
3226
3229
|
* @public
|
|
3227
|
-
* <p>
|
|
3230
|
+
* <p>Describes the options when creating an Amazon Web Services Verified Access trust provider using the <code>user</code>
|
|
3231
|
+
* type.</p>
|
|
3228
3232
|
*/
|
|
3229
3233
|
export interface CreateVerifiedAccessTrustProviderOidcOptions {
|
|
3230
3234
|
/**
|
|
@@ -3261,23 +3265,27 @@ export interface CreateVerifiedAccessTrustProviderOidcOptions {
|
|
|
3261
3265
|
*/
|
|
3262
3266
|
export interface CreateVerifiedAccessTrustProviderRequest {
|
|
3263
3267
|
/**
|
|
3264
|
-
* <p>The type of trust provider
|
|
3268
|
+
* <p>The type of trust provider.</p>
|
|
3265
3269
|
*/
|
|
3266
3270
|
TrustProviderType: TrustProviderType | string | undefined;
|
|
3267
3271
|
/**
|
|
3268
|
-
* <p>The type of user-based trust provider
|
|
3272
|
+
* <p>The type of user-based trust provider. This parameter is required when the provider type
|
|
3273
|
+
* is <code>user</code>.</p>
|
|
3269
3274
|
*/
|
|
3270
3275
|
UserTrustProviderType?: UserTrustProviderType | string;
|
|
3271
3276
|
/**
|
|
3272
|
-
* <p>The type of device-based trust provider
|
|
3277
|
+
* <p>The type of device-based trust provider. This parameter is required when the provider
|
|
3278
|
+
* type is <code>device</code>.</p>
|
|
3273
3279
|
*/
|
|
3274
3280
|
DeviceTrustProviderType?: DeviceTrustProviderType | string;
|
|
3275
3281
|
/**
|
|
3276
|
-
* <p>The
|
|
3282
|
+
* <p>The options for a OpenID Connect-compatible user-identity trust provider. This parameter
|
|
3283
|
+
* is required when the provider type is <code>user</code>.</p>
|
|
3277
3284
|
*/
|
|
3278
3285
|
OidcOptions?: CreateVerifiedAccessTrustProviderOidcOptions;
|
|
3279
3286
|
/**
|
|
3280
|
-
* <p>The options for device
|
|
3287
|
+
* <p>The options for a device-based trust provider. This parameter is required when the
|
|
3288
|
+
* provider type is <code>device</code>.</p>
|
|
3281
3289
|
*/
|
|
3282
3290
|
DeviceOptions?: CreateVerifiedAccessTrustProviderDeviceOptions;
|
|
3283
3291
|
/**
|
|
@@ -3285,11 +3293,11 @@ export interface CreateVerifiedAccessTrustProviderRequest {
|
|
|
3285
3293
|
*/
|
|
3286
3294
|
PolicyReferenceName: string | undefined;
|
|
3287
3295
|
/**
|
|
3288
|
-
* <p>A description for the
|
|
3296
|
+
* <p>A description for the Verified Access trust provider.</p>
|
|
3289
3297
|
*/
|
|
3290
3298
|
Description?: string;
|
|
3291
3299
|
/**
|
|
3292
|
-
* <p>The tags to assign to the
|
|
3300
|
+
* <p>The tags to assign to the Verified Access trust provider.</p>
|
|
3293
3301
|
*/
|
|
3294
3302
|
TagSpecifications?: TagSpecification[];
|
|
3295
3303
|
/**
|
|
@@ -3309,7 +3317,7 @@ export interface CreateVerifiedAccessTrustProviderRequest {
|
|
|
3309
3317
|
*/
|
|
3310
3318
|
export interface CreateVerifiedAccessTrustProviderResult {
|
|
3311
3319
|
/**
|
|
3312
|
-
* <p>The ID of the
|
|
3320
|
+
* <p>The ID of the Verified Access trust provider.</p>
|
|
3313
3321
|
*/
|
|
3314
3322
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
3315
3323
|
}
|
|
@@ -6520,3 +6528,15 @@ export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
|
6520
6528
|
*/
|
|
6521
6529
|
DryRun?: boolean;
|
|
6522
6530
|
}
|
|
6531
|
+
/**
|
|
6532
|
+
* @internal
|
|
6533
|
+
*/
|
|
6534
|
+
export declare const CreateVerifiedAccessTrustProviderOidcOptionsFilterSensitiveLog: (obj: CreateVerifiedAccessTrustProviderOidcOptions) => any;
|
|
6535
|
+
/**
|
|
6536
|
+
* @internal
|
|
6537
|
+
*/
|
|
6538
|
+
export declare const CreateVerifiedAccessTrustProviderRequestFilterSensitiveLog: (obj: CreateVerifiedAccessTrustProviderRequest) => any;
|
|
6539
|
+
/**
|
|
6540
|
+
* @internal
|
|
6541
|
+
*/
|
|
6542
|
+
export declare const CreateVerifiedAccessTrustProviderResultFilterSensitiveLog: (obj: CreateVerifiedAccessTrustProviderResult) => any;
|