@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
|
@@ -2033,6 +2033,9 @@ export interface NetworkInsightsAnalysis {
|
|
|
2033
2033
|
* <p>The ID of the path.</p>
|
|
2034
2034
|
*/
|
|
2035
2035
|
NetworkInsightsPathId?: string;
|
|
2036
|
+
/**
|
|
2037
|
+
* <p>The member accounts that contain resources that the path can traverse.</p>
|
|
2038
|
+
*/
|
|
2036
2039
|
AdditionalAccounts?: string[];
|
|
2037
2040
|
/**
|
|
2038
2041
|
* <p>The Amazon Resource Names (ARN) of the Amazon Web Services resources that the path must traverse.</p>
|
|
@@ -2074,6 +2077,9 @@ export interface NetworkInsightsAnalysis {
|
|
|
2074
2077
|
* <p>Potential intermediate components.</p>
|
|
2075
2078
|
*/
|
|
2076
2079
|
AlternatePathHints?: AlternatePathHint[];
|
|
2080
|
+
/**
|
|
2081
|
+
* <p>Potential intermediate accounts.</p>
|
|
2082
|
+
*/
|
|
2077
2083
|
SuggestedAccounts?: string[];
|
|
2078
2084
|
/**
|
|
2079
2085
|
* <p>The tags.</p>
|
|
@@ -7363,95 +7369,296 @@ export interface DescribeTrunkInterfaceAssociationsResult {
|
|
|
7363
7369
|
NextToken?: string;
|
|
7364
7370
|
}
|
|
7365
7371
|
export interface DescribeVerifiedAccessEndpointsRequest {
|
|
7372
|
+
/**
|
|
7373
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
7374
|
+
*/
|
|
7366
7375
|
VerifiedAccessEndpointIds?: string[];
|
|
7376
|
+
/**
|
|
7377
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
7378
|
+
*/
|
|
7367
7379
|
VerifiedAccessInstanceId?: string;
|
|
7380
|
+
/**
|
|
7381
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
7382
|
+
*/
|
|
7368
7383
|
VerifiedAccessGroupId?: string;
|
|
7384
|
+
/**
|
|
7385
|
+
* <p>The maximum number of results to return with a single call.
|
|
7386
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
7387
|
+
*/
|
|
7369
7388
|
MaxResults?: number;
|
|
7389
|
+
/**
|
|
7390
|
+
* <p>The token for the next page of results.</p>
|
|
7391
|
+
*/
|
|
7370
7392
|
NextToken?: string;
|
|
7393
|
+
/**
|
|
7394
|
+
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
7395
|
+
*/
|
|
7371
7396
|
Filters?: Filter[];
|
|
7397
|
+
/**
|
|
7398
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7399
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7400
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7401
|
+
*/
|
|
7372
7402
|
DryRun?: boolean;
|
|
7373
7403
|
}
|
|
7374
7404
|
export interface DescribeVerifiedAccessEndpointsResult {
|
|
7405
|
+
/**
|
|
7406
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
7407
|
+
*/
|
|
7375
7408
|
VerifiedAccessEndpoints?: VerifiedAccessEndpoint[];
|
|
7409
|
+
/**
|
|
7410
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
7411
|
+
*/
|
|
7376
7412
|
NextToken?: string;
|
|
7377
7413
|
}
|
|
7378
7414
|
export interface DescribeVerifiedAccessGroupsRequest {
|
|
7415
|
+
/**
|
|
7416
|
+
* <p>The ID of the Amazon Web Services Verified Access groups.</p>
|
|
7417
|
+
*/
|
|
7379
7418
|
VerifiedAccessGroupIds?: string[];
|
|
7419
|
+
/**
|
|
7420
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
7421
|
+
*/
|
|
7380
7422
|
VerifiedAccessInstanceId?: string;
|
|
7423
|
+
/**
|
|
7424
|
+
* <p>The maximum number of results to return with a single call.
|
|
7425
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
7426
|
+
*/
|
|
7381
7427
|
MaxResults?: number;
|
|
7428
|
+
/**
|
|
7429
|
+
* <p>The token for the next page of results.</p>
|
|
7430
|
+
*/
|
|
7382
7431
|
NextToken?: string;
|
|
7432
|
+
/**
|
|
7433
|
+
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
7434
|
+
*/
|
|
7383
7435
|
Filters?: Filter[];
|
|
7436
|
+
/**
|
|
7437
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7438
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7439
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7440
|
+
*/
|
|
7384
7441
|
DryRun?: boolean;
|
|
7385
7442
|
}
|
|
7386
7443
|
export interface DescribeVerifiedAccessGroupsResult {
|
|
7444
|
+
/**
|
|
7445
|
+
* <p>The ID of the Verified Access group.</p>
|
|
7446
|
+
*/
|
|
7387
7447
|
VerifiedAccessGroups?: VerifiedAccessGroup[];
|
|
7448
|
+
/**
|
|
7449
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
7450
|
+
*/
|
|
7388
7451
|
NextToken?: string;
|
|
7389
7452
|
}
|
|
7390
7453
|
export interface DescribeVerifiedAccessInstanceLoggingConfigurationsRequest {
|
|
7454
|
+
/**
|
|
7455
|
+
* <p>The IDs of the Amazon Web Services Verified Access instances.</p>
|
|
7456
|
+
*/
|
|
7391
7457
|
VerifiedAccessInstanceIds?: string[];
|
|
7458
|
+
/**
|
|
7459
|
+
* <p>The maximum number of results to return with a single call.
|
|
7460
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
7461
|
+
*/
|
|
7392
7462
|
MaxResults?: number;
|
|
7463
|
+
/**
|
|
7464
|
+
* <p>The token for the next page of results.</p>
|
|
7465
|
+
*/
|
|
7393
7466
|
NextToken?: string;
|
|
7467
|
+
/**
|
|
7468
|
+
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
7469
|
+
*/
|
|
7394
7470
|
Filters?: Filter[];
|
|
7471
|
+
/**
|
|
7472
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7473
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7474
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7475
|
+
*/
|
|
7395
7476
|
DryRun?: boolean;
|
|
7396
7477
|
}
|
|
7397
7478
|
export declare enum VerifiedAccessLogDeliveryStatusCode {
|
|
7398
7479
|
FAILED = "failed",
|
|
7399
7480
|
SUCCESS = "success"
|
|
7400
7481
|
}
|
|
7482
|
+
/**
|
|
7483
|
+
* <p>Describes a log delivery status.</p>
|
|
7484
|
+
*/
|
|
7401
7485
|
export interface VerifiedAccessLogDeliveryStatus {
|
|
7486
|
+
/**
|
|
7487
|
+
* <p>The status code.</p>
|
|
7488
|
+
*/
|
|
7402
7489
|
Code?: VerifiedAccessLogDeliveryStatusCode | string;
|
|
7490
|
+
/**
|
|
7491
|
+
* <p>The status message.</p>
|
|
7492
|
+
*/
|
|
7403
7493
|
Message?: string;
|
|
7404
7494
|
}
|
|
7495
|
+
/**
|
|
7496
|
+
* <p>Options for CloudWatch Logs as a logging destination.</p>
|
|
7497
|
+
*/
|
|
7405
7498
|
export interface VerifiedAccessLogCloudWatchLogsDestination {
|
|
7499
|
+
/**
|
|
7500
|
+
* <p>Indicates whether logging is enabled.</p>
|
|
7501
|
+
*/
|
|
7406
7502
|
Enabled?: boolean;
|
|
7503
|
+
/**
|
|
7504
|
+
* <p>The delivery status for access logs.</p>
|
|
7505
|
+
*/
|
|
7407
7506
|
DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
|
|
7507
|
+
/**
|
|
7508
|
+
* <p>The ID of the CloudWatch Logs log group.</p>
|
|
7509
|
+
*/
|
|
7408
7510
|
LogGroup?: string;
|
|
7409
7511
|
}
|
|
7512
|
+
/**
|
|
7513
|
+
* <p>Options for Kinesis as a logging destination.</p>
|
|
7514
|
+
*/
|
|
7410
7515
|
export interface VerifiedAccessLogKinesisDataFirehoseDestination {
|
|
7516
|
+
/**
|
|
7517
|
+
* <p>Indicates whether logging is enabled.</p>
|
|
7518
|
+
*/
|
|
7411
7519
|
Enabled?: boolean;
|
|
7520
|
+
/**
|
|
7521
|
+
* <p>The delivery status.</p>
|
|
7522
|
+
*/
|
|
7412
7523
|
DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
|
|
7524
|
+
/**
|
|
7525
|
+
* <p>The ID of the delivery stream.</p>
|
|
7526
|
+
*/
|
|
7413
7527
|
DeliveryStream?: string;
|
|
7414
7528
|
}
|
|
7529
|
+
/**
|
|
7530
|
+
* <p>Options for Amazon S3 as a logging destination.</p>
|
|
7531
|
+
*/
|
|
7415
7532
|
export interface VerifiedAccessLogS3Destination {
|
|
7533
|
+
/**
|
|
7534
|
+
* <p>Indicates whether logging is enabled.</p>
|
|
7535
|
+
*/
|
|
7416
7536
|
Enabled?: boolean;
|
|
7537
|
+
/**
|
|
7538
|
+
* <p>The delivery status.</p>
|
|
7539
|
+
*/
|
|
7417
7540
|
DeliveryStatus?: VerifiedAccessLogDeliveryStatus;
|
|
7541
|
+
/**
|
|
7542
|
+
* <p>The bucket name.</p>
|
|
7543
|
+
*/
|
|
7418
7544
|
BucketName?: string;
|
|
7545
|
+
/**
|
|
7546
|
+
* <p>The bucket prefix.</p>
|
|
7547
|
+
*/
|
|
7419
7548
|
Prefix?: string;
|
|
7549
|
+
/**
|
|
7550
|
+
* <p>The Amazon Web Services account number that owns the bucket.</p>
|
|
7551
|
+
*/
|
|
7420
7552
|
BucketOwner?: string;
|
|
7421
7553
|
}
|
|
7554
|
+
/**
|
|
7555
|
+
* <p>Describes the destinations for Verified Access logs.</p>
|
|
7556
|
+
*/
|
|
7422
7557
|
export interface VerifiedAccessLogs {
|
|
7558
|
+
/**
|
|
7559
|
+
* <p>Amazon S3 logging options.</p>
|
|
7560
|
+
*/
|
|
7423
7561
|
S3?: VerifiedAccessLogS3Destination;
|
|
7562
|
+
/**
|
|
7563
|
+
* <p>CloudWatch Logs logging destination.</p>
|
|
7564
|
+
*/
|
|
7424
7565
|
CloudWatchLogs?: VerifiedAccessLogCloudWatchLogsDestination;
|
|
7566
|
+
/**
|
|
7567
|
+
* <p>Kinesis logging destination.</p>
|
|
7568
|
+
*/
|
|
7425
7569
|
KinesisDataFirehose?: VerifiedAccessLogKinesisDataFirehoseDestination;
|
|
7426
7570
|
}
|
|
7571
|
+
/**
|
|
7572
|
+
* <p>Describes logging options for an Amazon Web Services Verified Access instance.</p>
|
|
7573
|
+
*/
|
|
7427
7574
|
export interface VerifiedAccessInstanceLoggingConfiguration {
|
|
7575
|
+
/**
|
|
7576
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
7577
|
+
*/
|
|
7428
7578
|
VerifiedAccessInstanceId?: string;
|
|
7579
|
+
/**
|
|
7580
|
+
* <p>Details about the logging options.</p>
|
|
7581
|
+
*/
|
|
7429
7582
|
AccessLogs?: VerifiedAccessLogs;
|
|
7430
7583
|
}
|
|
7431
7584
|
export interface DescribeVerifiedAccessInstanceLoggingConfigurationsResult {
|
|
7585
|
+
/**
|
|
7586
|
+
* <p>The current logging configuration for the Amazon Web Services Verified Access instances.</p>
|
|
7587
|
+
*/
|
|
7432
7588
|
LoggingConfigurations?: VerifiedAccessInstanceLoggingConfiguration[];
|
|
7589
|
+
/**
|
|
7590
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
7591
|
+
*/
|
|
7433
7592
|
NextToken?: string;
|
|
7434
7593
|
}
|
|
7435
7594
|
export interface DescribeVerifiedAccessInstancesRequest {
|
|
7595
|
+
/**
|
|
7596
|
+
* <p>The IDs of the Amazon Web Services Verified Access instances.</p>
|
|
7597
|
+
*/
|
|
7436
7598
|
VerifiedAccessInstanceIds?: string[];
|
|
7599
|
+
/**
|
|
7600
|
+
* <p>The maximum number of results to return with a single call.
|
|
7601
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
7602
|
+
*/
|
|
7437
7603
|
MaxResults?: number;
|
|
7604
|
+
/**
|
|
7605
|
+
* <p>The token for the next page of results.</p>
|
|
7606
|
+
*/
|
|
7438
7607
|
NextToken?: string;
|
|
7608
|
+
/**
|
|
7609
|
+
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
7610
|
+
*/
|
|
7439
7611
|
Filters?: Filter[];
|
|
7612
|
+
/**
|
|
7613
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7614
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7615
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7616
|
+
*/
|
|
7440
7617
|
DryRun?: boolean;
|
|
7441
7618
|
}
|
|
7442
7619
|
export interface DescribeVerifiedAccessInstancesResult {
|
|
7620
|
+
/**
|
|
7621
|
+
* <p>The IDs of the Amazon Web Services Verified Access instances.</p>
|
|
7622
|
+
*/
|
|
7443
7623
|
VerifiedAccessInstances?: VerifiedAccessInstance[];
|
|
7624
|
+
/**
|
|
7625
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
7626
|
+
*/
|
|
7444
7627
|
NextToken?: string;
|
|
7445
7628
|
}
|
|
7446
7629
|
export interface DescribeVerifiedAccessTrustProvidersRequest {
|
|
7630
|
+
/**
|
|
7631
|
+
* <p>The IDs of the Amazon Web Services Verified Access trust providers.</p>
|
|
7632
|
+
*/
|
|
7447
7633
|
VerifiedAccessTrustProviderIds?: string[];
|
|
7634
|
+
/**
|
|
7635
|
+
* <p>The maximum number of results to return with a single call.
|
|
7636
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
7637
|
+
*/
|
|
7448
7638
|
MaxResults?: number;
|
|
7639
|
+
/**
|
|
7640
|
+
* <p>The token for the next page of results.</p>
|
|
7641
|
+
*/
|
|
7449
7642
|
NextToken?: string;
|
|
7643
|
+
/**
|
|
7644
|
+
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
7645
|
+
*/
|
|
7450
7646
|
Filters?: Filter[];
|
|
7647
|
+
/**
|
|
7648
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7649
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7650
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7651
|
+
*/
|
|
7451
7652
|
DryRun?: boolean;
|
|
7452
7653
|
}
|
|
7453
7654
|
export interface DescribeVerifiedAccessTrustProvidersResult {
|
|
7655
|
+
/**
|
|
7656
|
+
* <p>The IDs of the Amazon Web Services Verified Access trust providers.</p>
|
|
7657
|
+
*/
|
|
7454
7658
|
VerifiedAccessTrustProviders?: VerifiedAccessTrustProvider[];
|
|
7659
|
+
/**
|
|
7660
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
7661
|
+
*/
|
|
7455
7662
|
NextToken?: string;
|
|
7456
7663
|
}
|
|
7457
7664
|
export declare enum VolumeAttributeName {
|
|
@@ -660,13 +660,34 @@ export interface DetachNetworkInterfaceRequest {
|
|
|
660
660
|
Force?: boolean;
|
|
661
661
|
}
|
|
662
662
|
export interface DetachVerifiedAccessTrustProviderRequest {
|
|
663
|
+
/**
|
|
664
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
665
|
+
*/
|
|
663
666
|
VerifiedAccessInstanceId: string | undefined;
|
|
667
|
+
/**
|
|
668
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
669
|
+
*/
|
|
664
670
|
VerifiedAccessTrustProviderId: string | undefined;
|
|
671
|
+
/**
|
|
672
|
+
* <p>A unique, case-sensitive token that you provide to ensure idempotency of your
|
|
673
|
+
* modification request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring Idempotency</a>.</p>
|
|
674
|
+
*/
|
|
665
675
|
ClientToken?: string;
|
|
676
|
+
/**
|
|
677
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
678
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
679
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
680
|
+
*/
|
|
666
681
|
DryRun?: boolean;
|
|
667
682
|
}
|
|
668
683
|
export interface DetachVerifiedAccessTrustProviderResult {
|
|
684
|
+
/**
|
|
685
|
+
* <p>The ID of the Amazon Web Services Verified Access trust provider.</p>
|
|
686
|
+
*/
|
|
669
687
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider;
|
|
688
|
+
/**
|
|
689
|
+
* <p>The ID of the Amazon Web Services Verified Access instance.</p>
|
|
690
|
+
*/
|
|
670
691
|
VerifiedAccessInstance?: VerifiedAccessInstance;
|
|
671
692
|
}
|
|
672
693
|
export interface DetachVolumeRequest {
|
|
@@ -1726,9 +1747,17 @@ export interface EnableIpamOrganizationAdminAccountResult {
|
|
|
1726
1747
|
Success?: boolean;
|
|
1727
1748
|
}
|
|
1728
1749
|
export interface EnableReachabilityAnalyzerOrganizationSharingRequest {
|
|
1750
|
+
/**
|
|
1751
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1752
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
1753
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
1754
|
+
*/
|
|
1729
1755
|
DryRun?: boolean;
|
|
1730
1756
|
}
|
|
1731
1757
|
export interface EnableReachabilityAnalyzerOrganizationSharingResult {
|
|
1758
|
+
/**
|
|
1759
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
1760
|
+
*/
|
|
1732
1761
|
ReturnValue?: boolean;
|
|
1733
1762
|
}
|
|
1734
1763
|
export interface EnableSerialConsoleAccessRequest {
|
|
@@ -4126,19 +4155,47 @@ export interface GetTransitGatewayRouteTablePropagationsResult {
|
|
|
4126
4155
|
NextToken?: string;
|
|
4127
4156
|
}
|
|
4128
4157
|
export interface GetVerifiedAccessEndpointPolicyRequest {
|
|
4158
|
+
/**
|
|
4159
|
+
* <p>The ID of the Amazon Web Services Verified Access endpoint.</p>
|
|
4160
|
+
*/
|
|
4129
4161
|
VerifiedAccessEndpointId: string | undefined;
|
|
4162
|
+
/**
|
|
4163
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
4164
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
4165
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
4166
|
+
*/
|
|
4130
4167
|
DryRun?: boolean;
|
|
4131
4168
|
}
|
|
4132
4169
|
export interface GetVerifiedAccessEndpointPolicyResult {
|
|
4170
|
+
/**
|
|
4171
|
+
* <p>The status of the Verified Access policy.</p>
|
|
4172
|
+
*/
|
|
4133
4173
|
PolicyEnabled?: boolean;
|
|
4174
|
+
/**
|
|
4175
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
4176
|
+
*/
|
|
4134
4177
|
PolicyDocument?: string;
|
|
4135
4178
|
}
|
|
4136
4179
|
export interface GetVerifiedAccessGroupPolicyRequest {
|
|
4180
|
+
/**
|
|
4181
|
+
* <p>The ID of the Amazon Web Services Verified Access group.</p>
|
|
4182
|
+
*/
|
|
4137
4183
|
VerifiedAccessGroupId: string | undefined;
|
|
4184
|
+
/**
|
|
4185
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
4186
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
4187
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
4188
|
+
*/
|
|
4138
4189
|
DryRun?: boolean;
|
|
4139
4190
|
}
|
|
4140
4191
|
export interface GetVerifiedAccessGroupPolicyResult {
|
|
4192
|
+
/**
|
|
4193
|
+
* <p>The status of the Verified Access policy.</p>
|
|
4194
|
+
*/
|
|
4141
4195
|
PolicyEnabled?: boolean;
|
|
4196
|
+
/**
|
|
4197
|
+
* <p>The Amazon Web Services Verified Access policy document.</p>
|
|
4198
|
+
*/
|
|
4142
4199
|
PolicyDocument?: string;
|
|
4143
4200
|
}
|
|
4144
4201
|
export interface GetVpnConnectionDeviceSampleConfigurationRequest {
|