@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.
Files changed (35) hide show
  1. package/dist-types/EC2.d.ts +89 -1
  2. package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +19 -0
  3. package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +17 -0
  4. package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +20 -0
  5. package/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +18 -0
  6. package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +20 -0
  7. package/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +17 -0
  8. package/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +17 -0
  9. package/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +17 -0
  10. package/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +17 -0
  11. package/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +17 -0
  13. package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +17 -0
  14. package/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +17 -0
  15. package/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +17 -0
  16. package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +17 -0
  17. package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +17 -0
  18. package/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +21 -0
  19. package/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +17 -0
  20. package/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +17 -0
  21. package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +17 -0
  22. package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +17 -0
  23. package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +17 -0
  24. package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +17 -0
  25. package/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +17 -0
  26. package/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +17 -0
  27. package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +17 -0
  28. package/dist-types/models/models_0.d.ts +126 -0
  29. package/dist-types/models/models_1.d.ts +6 -0
  30. package/dist-types/models/models_2.d.ts +318 -0
  31. package/dist-types/models/models_3.d.ts +60 -0
  32. package/dist-types/models/models_4.d.ts +207 -0
  33. package/dist-types/models/models_5.d.ts +57 -0
  34. package/dist-types/models/models_6.d.ts +231 -0
  35. package/package.json +30 -30
@@ -7,6 +7,27 @@ export interface EnableReachabilityAnalyzerOrganizationSharingCommandInput exten
7
7
  }
8
8
  export interface EnableReachabilityAnalyzerOrganizationSharingCommandOutput extends EnableReachabilityAnalyzerOrganizationSharingResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Establishes a trust relationship between Reachability Analyzer and Organizations.
12
+ * This operation must be performed by the management account for the organization.</p>
13
+ * <p>After you establish a trust relationship, a user in the management account or
14
+ * a delegated administrator account can run a cross-account analysis using resources
15
+ * from the member accounts.</p>
16
+ * @example
17
+ * Use a bare-bones client and the command you need to make an API call.
18
+ * ```javascript
19
+ * import { EC2Client, EnableReachabilityAnalyzerOrganizationSharingCommand } from "@aws-sdk/client-ec2"; // ES Modules import
20
+ * // const { EC2Client, EnableReachabilityAnalyzerOrganizationSharingCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
21
+ * const client = new EC2Client(config);
22
+ * const command = new EnableReachabilityAnalyzerOrganizationSharingCommand(input);
23
+ * const response = await client.send(command);
24
+ * ```
25
+ *
26
+ * @see {@link EnableReachabilityAnalyzerOrganizationSharingCommandInput} for command's `input` shape.
27
+ * @see {@link EnableReachabilityAnalyzerOrganizationSharingCommandOutput} for command's `response` shape.
28
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
29
+ *
30
+ */
10
31
  export declare class EnableReachabilityAnalyzerOrganizationSharingCommand extends $Command<EnableReachabilityAnalyzerOrganizationSharingCommandInput, EnableReachabilityAnalyzerOrganizationSharingCommandOutput, EC2ClientResolvedConfig> {
11
32
  readonly input: EnableReachabilityAnalyzerOrganizationSharingCommandInput;
12
33
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface GetVerifiedAccessEndpointPolicyCommandInput extends GetVerified
7
7
  }
8
8
  export interface GetVerifiedAccessEndpointPolicyCommandOutput extends GetVerifiedAccessEndpointPolicyResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Get the Verified Access policy associated with the endpoint.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, GetVerifiedAccessEndpointPolicyCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, GetVerifiedAccessEndpointPolicyCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new GetVerifiedAccessEndpointPolicyCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link GetVerifiedAccessEndpointPolicyCommandInput} for command's `input` shape.
23
+ * @see {@link GetVerifiedAccessEndpointPolicyCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class GetVerifiedAccessEndpointPolicyCommand extends $Command<GetVerifiedAccessEndpointPolicyCommandInput, GetVerifiedAccessEndpointPolicyCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: GetVerifiedAccessEndpointPolicyCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface GetVerifiedAccessGroupPolicyCommandInput extends GetVerifiedAcc
7
7
  }
8
8
  export interface GetVerifiedAccessGroupPolicyCommandOutput extends GetVerifiedAccessGroupPolicyResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Shows the contents of the Verified Access policy associated with the group.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, GetVerifiedAccessGroupPolicyCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, GetVerifiedAccessGroupPolicyCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new GetVerifiedAccessGroupPolicyCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link GetVerifiedAccessGroupPolicyCommandInput} for command's `input` shape.
23
+ * @see {@link GetVerifiedAccessGroupPolicyCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class GetVerifiedAccessGroupPolicyCommand extends $Command<GetVerifiedAccessGroupPolicyCommandInput, GetVerifiedAccessGroupPolicyCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: GetVerifiedAccessGroupPolicyCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessEndpointCommandInput extends ModifyVerified
7
7
  }
8
8
  export interface ModifyVerifiedAccessEndpointCommandOutput extends ModifyVerifiedAccessEndpointResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the configuration of an Amazon Web Services Verified Access endpoint.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessEndpointCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessEndpointCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessEndpointCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessEndpointCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessEndpointCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessEndpointCommand extends $Command<ModifyVerifiedAccessEndpointCommandInput, ModifyVerifiedAccessEndpointCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessEndpointCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessEndpointPolicyCommandInput extends ModifyVe
7
7
  }
8
8
  export interface ModifyVerifiedAccessEndpointPolicyCommandOutput extends ModifyVerifiedAccessEndpointPolicyResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the specified Verified Access endpoint policy.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessEndpointPolicyCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessEndpointPolicyCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessEndpointPolicyCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessEndpointPolicyCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessEndpointPolicyCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessEndpointPolicyCommand extends $Command<ModifyVerifiedAccessEndpointPolicyCommandInput, ModifyVerifiedAccessEndpointPolicyCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessEndpointPolicyCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessGroupCommandInput extends ModifyVerifiedAcc
7
7
  }
8
8
  export interface ModifyVerifiedAccessGroupCommandOutput extends ModifyVerifiedAccessGroupResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the specified Verified Access group configuration.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessGroupCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessGroupCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessGroupCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessGroupCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessGroupCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessGroupCommand extends $Command<ModifyVerifiedAccessGroupCommandInput, ModifyVerifiedAccessGroupCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessGroupCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessGroupPolicyCommandInput extends ModifyVerif
7
7
  }
8
8
  export interface ModifyVerifiedAccessGroupPolicyCommandOutput extends ModifyVerifiedAccessGroupPolicyResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the specified Verified Access group policy.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessGroupPolicyCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessGroupPolicyCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessGroupPolicyCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessGroupPolicyCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessGroupPolicyCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessGroupPolicyCommand extends $Command<ModifyVerifiedAccessGroupPolicyCommandInput, ModifyVerifiedAccessGroupPolicyCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessGroupPolicyCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessInstanceCommandInput extends ModifyVerified
7
7
  }
8
8
  export interface ModifyVerifiedAccessInstanceCommandOutput extends ModifyVerifiedAccessInstanceResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the configuration of the specified Verified Access instance.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessInstanceCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessInstanceCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessInstanceCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessInstanceCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessInstanceCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessInstanceCommand extends $Command<ModifyVerifiedAccessInstanceCommandInput, ModifyVerifiedAccessInstanceCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessInstanceCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessInstanceLoggingConfigurationCommandInput ex
7
7
  }
8
8
  export interface ModifyVerifiedAccessInstanceLoggingConfigurationCommandOutput extends ModifyVerifiedAccessInstanceLoggingConfigurationResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the logging configuration for the specified Amazon Web Services Verified Access instance.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessInstanceLoggingConfigurationCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessInstanceLoggingConfigurationCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessInstanceLoggingConfigurationCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessInstanceLoggingConfigurationCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessInstanceLoggingConfigurationCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessInstanceLoggingConfigurationCommand extends $Command<ModifyVerifiedAccessInstanceLoggingConfigurationCommandInput, ModifyVerifiedAccessInstanceLoggingConfigurationCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessInstanceLoggingConfigurationCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -7,6 +7,23 @@ export interface ModifyVerifiedAccessTrustProviderCommandInput extends ModifyVer
7
7
  }
8
8
  export interface ModifyVerifiedAccessTrustProviderCommandOutput extends ModifyVerifiedAccessTrustProviderResult, __MetadataBearer {
9
9
  }
10
+ /**
11
+ * <p>Modifies the configuration of the specified Amazon Web Services Verified Access trust provider.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { EC2Client, ModifyVerifiedAccessTrustProviderCommand } from "@aws-sdk/client-ec2"; // ES Modules import
16
+ * // const { EC2Client, ModifyVerifiedAccessTrustProviderCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
17
+ * const client = new EC2Client(config);
18
+ * const command = new ModifyVerifiedAccessTrustProviderCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ModifyVerifiedAccessTrustProviderCommandInput} for command's `input` shape.
23
+ * @see {@link ModifyVerifiedAccessTrustProviderCommandOutput} for command's `response` shape.
24
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
25
+ *
26
+ */
10
27
  export declare class ModifyVerifiedAccessTrustProviderCommand extends $Command<ModifyVerifiedAccessTrustProviderCommandInput, ModifyVerifiedAccessTrustProviderCommandOutput, EC2ClientResolvedConfig> {
11
28
  readonly input: ModifyVerifiedAccessTrustProviderCommandInput;
12
29
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
@@ -3198,9 +3198,24 @@ export interface AttachNetworkInterfaceResult {
3198
3198
  NetworkCardIndex?: number;
3199
3199
  }
3200
3200
  export interface AttachVerifiedAccessTrustProviderRequest {
3201
+ /**
3202
+ * <p>The ID of the Amazon Web Services Verified Access instance.</p>
3203
+ */
3201
3204
  VerifiedAccessInstanceId: string | undefined;
3205
+ /**
3206
+ * <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
3207
+ */
3202
3208
  VerifiedAccessTrustProviderId: string | undefined;
3209
+ /**
3210
+ * <p>A unique, case-sensitive token that you provide to ensure idempotency of your
3211
+ * modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
3212
+ */
3203
3213
  ClientToken?: string;
3214
+ /**
3215
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
3216
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
3217
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
3218
+ */
3204
3219
  DryRun?: boolean;
3205
3220
  }
3206
3221
  export declare enum DeviceTrustProviderType {
@@ -3215,48 +3230,159 @@ export declare enum UserTrustProviderType {
3215
3230
  iam_identity_center = "iam-identity-center",
3216
3231
  oidc = "oidc"
3217
3232
  }
3233
+ /**
3234
+ * <p>Condensed information about a trust provider.</p>
3235
+ */
3218
3236
  export interface VerifiedAccessTrustProviderCondensed {
3237
+ /**
3238
+ * <p>The ID of the trust provider.</p>
3239
+ */
3219
3240
  VerifiedAccessTrustProviderId?: string;
3241
+ /**
3242
+ * <p>The description of trust provider.</p>
3243
+ */
3220
3244
  Description?: string;
3245
+ /**
3246
+ * <p>The type of trust provider (user- or device-based).</p>
3247
+ */
3221
3248
  TrustProviderType?: TrustProviderType | string;
3249
+ /**
3250
+ * <p>The type of user-based trust provider.</p>
3251
+ */
3222
3252
  UserTrustProviderType?: UserTrustProviderType | string;
3253
+ /**
3254
+ * <p>The type of device-based trust provider.</p>
3255
+ */
3223
3256
  DeviceTrustProviderType?: DeviceTrustProviderType | string;
3224
3257
  }
3258
+ /**
3259
+ * <p>Describes a Verified Access instance.</p>
3260
+ */
3225
3261
  export interface VerifiedAccessInstance {
3262
+ /**
3263
+ * <p>The ID of the Amazon Web Services Verified Access instance.</p>
3264
+ */
3226
3265
  VerifiedAccessInstanceId?: string;
3266
+ /**
3267
+ * <p>A description for the Amazon Web Services Verified Access instance.</p>
3268
+ */
3227
3269
  Description?: string;
3270
+ /**
3271
+ * <p>The IDs of the Amazon Web Services Verified Access trust providers.</p>
3272
+ */
3228
3273
  VerifiedAccessTrustProviders?: VerifiedAccessTrustProviderCondensed[];
3274
+ /**
3275
+ * <p>The creation time.</p>
3276
+ */
3229
3277
  CreationTime?: string;
3278
+ /**
3279
+ * <p>The last updated time.</p>
3280
+ */
3230
3281
  LastUpdatedTime?: string;
3282
+ /**
3283
+ * <p>The tags.</p>
3284
+ */
3231
3285
  Tags?: Tag[];
3232
3286
  }
3287
+ /**
3288
+ * <p>Options for an Amazon Web Services Verified Access device-identity based trust provider.</p>
3289
+ */
3233
3290
  export interface DeviceOptions {
3291
+ /**
3292
+ * <p>The ID of the tenant application with the device-identity provider.</p>
3293
+ */
3234
3294
  TenantId?: string;
3235
3295
  }
3296
+ /**
3297
+ * <p>Options for OIDC-based, user-identity type trust provider.</p>
3298
+ */
3236
3299
  export interface OidcOptions {
3300
+ /**
3301
+ * <p>The OIDC issuer.</p>
3302
+ */
3237
3303
  Issuer?: string;
3304
+ /**
3305
+ * <p>The OIDC authorization endpoint.</p>
3306
+ */
3238
3307
  AuthorizationEndpoint?: string;
3308
+ /**
3309
+ * <p>The OIDC token endpoint.</p>
3310
+ */
3239
3311
  TokenEndpoint?: string;
3312
+ /**
3313
+ * <p>The OIDC user info endpoint.</p>
3314
+ */
3240
3315
  UserInfoEndpoint?: string;
3316
+ /**
3317
+ * <p>The client identifier.</p>
3318
+ */
3241
3319
  ClientId?: string;
3320
+ /**
3321
+ * <p>The client secret.</p>
3322
+ */
3242
3323
  ClientSecret?: string;
3324
+ /**
3325
+ * <p>The OpenID Connect (OIDC) scope specified.</p>
3326
+ */
3243
3327
  Scope?: string;
3244
3328
  }
3329
+ /**
3330
+ * <p>Describes a Verified Access trust provider.</p>
3331
+ */
3245
3332
  export interface VerifiedAccessTrustProvider {
3333
+ /**
3334
+ * <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
3335
+ */
3246
3336
  VerifiedAccessTrustProviderId?: string;
3337
+ /**
3338
+ * <p>A description for the Amazon Web Services Verified Access trust provider.</p>
3339
+ */
3247
3340
  Description?: string;
3341
+ /**
3342
+ * <p>The type of Verified Access trust provider.</p>
3343
+ */
3248
3344
  TrustProviderType?: TrustProviderType | string;
3345
+ /**
3346
+ * <p>The type of user-based trust provider.</p>
3347
+ */
3249
3348
  UserTrustProviderType?: UserTrustProviderType | string;
3349
+ /**
3350
+ * <p>The type of device-based trust provider.</p>
3351
+ */
3250
3352
  DeviceTrustProviderType?: DeviceTrustProviderType | string;
3353
+ /**
3354
+ * <p>The OpenID Connect details for an <code>oidc</code>-type, user-identity based trust provider.</p>
3355
+ */
3251
3356
  OidcOptions?: OidcOptions;
3357
+ /**
3358
+ * <p>The options for device-identity type trust provider.</p>
3359
+ */
3252
3360
  DeviceOptions?: DeviceOptions;
3361
+ /**
3362
+ * <p>The identifier to be used when working with policy rules.</p>
3363
+ */
3253
3364
  PolicyReferenceName?: string;
3365
+ /**
3366
+ * <p>The creation time.</p>
3367
+ */
3254
3368
  CreationTime?: string;
3369
+ /**
3370
+ * <p>The last updated time.</p>
3371
+ */
3255
3372
  LastUpdatedTime?: string;
3373
+ /**
3374
+ * <p>The tags.</p>
3375
+ */
3256
3376
  Tags?: Tag[];
3257
3377
  }
3258
3378
  export interface AttachVerifiedAccessTrustProviderResult {
3379
+ /**
3380
+ * <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
3381
+ */
3259
3382
  VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
3383
+ /**
3384
+ * <p>The ID of the Amazon Web Services Verified Access instance.</p>
3385
+ */
3260
3386
  VerifiedAccessInstance?: VerifiedAccessInstance;
3261
3387
  }
3262
3388
  export interface AttachVolumeRequest {
@@ -6125,7 +6125,13 @@ export interface NetworkInsightsPath {
6125
6125
  * <p>The Amazon Web Services resource that is the destination of the path.</p>
6126
6126
  */
6127
6127
  Destination?: string;
6128
+ /**
6129
+ * <p>The Amazon Resource Name (ARN) of the source.</p>
6130
+ */
6128
6131
  SourceArn?: string;
6132
+ /**
6133
+ * <p>The Amazon Resource Name (ARN) of the destination.</p>
6134
+ */
6129
6135
  DestinationArn?: string;
6130
6136
  /**
6131
6137
  * <p>The IP address of the Amazon Web Services resource that is the source of the path.</p>