@aws-sdk/client-ram 3.687.0 → 3.691.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/models/models_0.d.ts +253 -253
- package/dist-types/ts3.4/models/models_0.d.ts +257 -253
- package/package.json +7 -7
|
@@ -23,7 +23,7 @@ export interface AcceptResourceShareInvitationRequest {
|
|
|
23
23
|
* error.</p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
clientToken?: string;
|
|
26
|
+
clientToken?: string | undefined;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* @public
|
|
@@ -61,12 +61,12 @@ export interface ResourceShareAssociation {
|
|
|
61
61
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
resourceShareArn?: string;
|
|
64
|
+
resourceShareArn?: string | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* <p>The name of the resource share.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
resourceShareName?: string;
|
|
69
|
+
resourceShareName?: string | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* <p>The associated entity. This can be either of the following:</p>
|
|
72
72
|
* <ul>
|
|
@@ -96,38 +96,38 @@ export interface ResourceShareAssociation {
|
|
|
96
96
|
* </ul>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
associatedEntity?: string;
|
|
99
|
+
associatedEntity?: string | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>The type of entity included in this association.</p>
|
|
102
102
|
* @public
|
|
103
103
|
*/
|
|
104
|
-
associationType?: ResourceShareAssociationType;
|
|
104
|
+
associationType?: ResourceShareAssociationType | undefined;
|
|
105
105
|
/**
|
|
106
106
|
* <p>The current status of the association.</p>
|
|
107
107
|
* @public
|
|
108
108
|
*/
|
|
109
|
-
status?: ResourceShareAssociationStatus;
|
|
109
|
+
status?: ResourceShareAssociationStatus | undefined;
|
|
110
110
|
/**
|
|
111
111
|
* <p>A message about the status of the association.</p>
|
|
112
112
|
* @public
|
|
113
113
|
*/
|
|
114
|
-
statusMessage?: string;
|
|
114
|
+
statusMessage?: string | undefined;
|
|
115
115
|
/**
|
|
116
116
|
* <p>The date and time when the association was created.</p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
creationTime?: Date;
|
|
119
|
+
creationTime?: Date | undefined;
|
|
120
120
|
/**
|
|
121
121
|
* <p>The date and time when the association was last updated.</p>
|
|
122
122
|
* @public
|
|
123
123
|
*/
|
|
124
|
-
lastUpdatedTime?: Date;
|
|
124
|
+
lastUpdatedTime?: Date | undefined;
|
|
125
125
|
/**
|
|
126
126
|
* <p>Indicates whether the principal belongs to the same organization in Organizations as the
|
|
127
127
|
* Amazon Web Services account that owns the resource share.</p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
external?: boolean;
|
|
130
|
+
external?: boolean | undefined;
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
133
133
|
* @public
|
|
@@ -152,49 +152,49 @@ export interface ResourceShareInvitation {
|
|
|
152
152
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the invitation.</p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
resourceShareInvitationArn?: string;
|
|
155
|
+
resourceShareInvitationArn?: string | undefined;
|
|
156
156
|
/**
|
|
157
157
|
* <p>The name of the resource share.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
resourceShareName?: string;
|
|
160
|
+
resourceShareName?: string | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share</p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
resourceShareArn?: string;
|
|
165
|
+
resourceShareArn?: string | undefined;
|
|
166
166
|
/**
|
|
167
167
|
* <p>The ID of the Amazon Web Services account that sent the invitation.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
senderAccountId?: string;
|
|
170
|
+
senderAccountId?: string | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>The ID of the Amazon Web Services account that received the invitation.</p>
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
receiverAccountId?: string;
|
|
175
|
+
receiverAccountId?: string | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* <p>The date and time when the invitation was sent.</p>
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
invitationTimestamp?: Date;
|
|
180
|
+
invitationTimestamp?: Date | undefined;
|
|
181
181
|
/**
|
|
182
182
|
* <p>The current status of the invitation.</p>
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
status?: ResourceShareInvitationStatus;
|
|
185
|
+
status?: ResourceShareInvitationStatus | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* @deprecated
|
|
188
188
|
*
|
|
189
189
|
* <p>To view the resources associated with a pending resource share invitation, use <a>ListPendingInvitationResources</a>.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
resourceShareAssociations?: ResourceShareAssociation[];
|
|
192
|
+
resourceShareAssociations?: ResourceShareAssociation[] | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the IAM user or role that received the invitation.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
receiverArn?: string;
|
|
197
|
+
receiverArn?: string | undefined;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* @public
|
|
@@ -204,7 +204,7 @@ export interface AcceptResourceShareInvitationResponse {
|
|
|
204
204
|
* <p>An object that contains information about the specified invitation.</p>
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
resourceShareInvitation?: ResourceShareInvitation;
|
|
207
|
+
resourceShareInvitation?: ResourceShareInvitation | undefined;
|
|
208
208
|
/**
|
|
209
209
|
* <p>The idempotency identifier associated with this request. If you
|
|
210
210
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -212,7 +212,7 @@ export interface AcceptResourceShareInvitationResponse {
|
|
|
212
212
|
* parameters must also have the same values that you used in the first call.</p>
|
|
213
213
|
* @public
|
|
214
214
|
*/
|
|
215
|
-
clientToken?: string;
|
|
215
|
+
clientToken?: string | undefined;
|
|
216
216
|
}
|
|
217
217
|
/**
|
|
218
218
|
* <p>The operation failed because the client token input parameter matched one that was
|
|
@@ -355,7 +355,7 @@ export interface AssociateResourceShareRequest {
|
|
|
355
355
|
* <code>null</code> if you want to add only principals.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
resourceArns?: string[];
|
|
358
|
+
resourceArns?: string[] | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>Specifies a list of principals to whom you want to the resource share. This can be
|
|
361
361
|
* <code>null</code> if you want to add only resources.</p>
|
|
@@ -395,7 +395,7 @@ export interface AssociateResourceShareRequest {
|
|
|
395
395
|
* </note>
|
|
396
396
|
* @public
|
|
397
397
|
*/
|
|
398
|
-
principals?: string[];
|
|
398
|
+
principals?: string[] | undefined;
|
|
399
399
|
/**
|
|
400
400
|
* <p>Specifies a unique, case-sensitive identifier that you provide to
|
|
401
401
|
* ensure the idempotency of the request. This lets you safely retry the request without
|
|
@@ -410,13 +410,13 @@ export interface AssociateResourceShareRequest {
|
|
|
410
410
|
* error.</p>
|
|
411
411
|
* @public
|
|
412
412
|
*/
|
|
413
|
-
clientToken?: string;
|
|
413
|
+
clientToken?: string | undefined;
|
|
414
414
|
/**
|
|
415
415
|
* <p>Specifies from which source accounts the service principal
|
|
416
416
|
* has access to the resources in this resource share.</p>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
sources?: string[];
|
|
419
|
+
sources?: string[] | undefined;
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
422
422
|
* @public
|
|
@@ -426,7 +426,7 @@ export interface AssociateResourceShareResponse {
|
|
|
426
426
|
* <p>An array of objects that contain information about the associations.</p>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
resourceShareAssociations?: ResourceShareAssociation[];
|
|
429
|
+
resourceShareAssociations?: ResourceShareAssociation[] | undefined;
|
|
430
430
|
/**
|
|
431
431
|
* <p>The idempotency identifier associated with this request. If you
|
|
432
432
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -434,7 +434,7 @@ export interface AssociateResourceShareResponse {
|
|
|
434
434
|
* parameters must also have the same values that you used in the first call.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
clientToken?: string;
|
|
437
|
+
clientToken?: string | undefined;
|
|
438
438
|
}
|
|
439
439
|
/**
|
|
440
440
|
* <p>The operation failed because a parameter you specified isn't valid.</p>
|
|
@@ -530,7 +530,7 @@ export interface AssociateResourceSharePermissionRequest {
|
|
|
530
530
|
* </note>
|
|
531
531
|
* @public
|
|
532
532
|
*/
|
|
533
|
-
replace?: boolean;
|
|
533
|
+
replace?: boolean | undefined;
|
|
534
534
|
/**
|
|
535
535
|
* <p>Specifies a unique, case-sensitive identifier that you provide to
|
|
536
536
|
* ensure the idempotency of the request. This lets you safely retry the request without
|
|
@@ -545,7 +545,7 @@ export interface AssociateResourceSharePermissionRequest {
|
|
|
545
545
|
* error.</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
clientToken?: string;
|
|
548
|
+
clientToken?: string | undefined;
|
|
549
549
|
/**
|
|
550
550
|
* <p>Specifies the version of the RAM permission to associate with the resource share. You can
|
|
551
551
|
* specify <i>only</i> the version that is currently set as the default
|
|
@@ -559,7 +559,7 @@ export interface AssociateResourceSharePermissionRequest {
|
|
|
559
559
|
* </note>
|
|
560
560
|
* @public
|
|
561
561
|
*/
|
|
562
|
-
permissionVersion?: number;
|
|
562
|
+
permissionVersion?: number | undefined;
|
|
563
563
|
}
|
|
564
564
|
/**
|
|
565
565
|
* @public
|
|
@@ -570,7 +570,7 @@ export interface AssociateResourceSharePermissionResponse {
|
|
|
570
570
|
* A value of <code>false</code> indicates that the request failed.</p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
returnValue?: boolean;
|
|
573
|
+
returnValue?: boolean | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p>The idempotency identifier associated with this request. If you
|
|
576
576
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -578,7 +578,7 @@ export interface AssociateResourceSharePermissionResponse {
|
|
|
578
578
|
* parameters must also have the same values that you used in the first call.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
clientToken?: string;
|
|
581
|
+
clientToken?: string | undefined;
|
|
582
582
|
}
|
|
583
583
|
/**
|
|
584
584
|
* <p>A structure containing a tag. A tag is metadata that you can attach to your resources
|
|
@@ -595,13 +595,13 @@ export interface Tag {
|
|
|
595
595
|
* sensitive.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
key?: string;
|
|
598
|
+
key?: string | undefined;
|
|
599
599
|
/**
|
|
600
600
|
* <p>The string value attached to the tag. The value can be an empty string. Key values are
|
|
601
601
|
* case sensitive.</p>
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
value?: string;
|
|
604
|
+
value?: string | undefined;
|
|
605
605
|
}
|
|
606
606
|
/**
|
|
607
607
|
* @public
|
|
@@ -675,13 +675,13 @@ export interface CreatePermissionRequest {
|
|
|
675
675
|
* error.</p>
|
|
676
676
|
* @public
|
|
677
677
|
*/
|
|
678
|
-
clientToken?: string;
|
|
678
|
+
clientToken?: string | undefined;
|
|
679
679
|
/**
|
|
680
680
|
* <p>Specifies a list of one or more tag key and value pairs to attach to the
|
|
681
681
|
* permission.</p>
|
|
682
682
|
* @public
|
|
683
683
|
*/
|
|
684
|
-
tags?: Tag[];
|
|
684
|
+
tags?: Tag[] | undefined;
|
|
685
685
|
}
|
|
686
686
|
/**
|
|
687
687
|
* @public
|
|
@@ -717,23 +717,23 @@ export interface ResourceSharePermissionSummary {
|
|
|
717
717
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the permission you want information about.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
arn?: string;
|
|
720
|
+
arn?: string | undefined;
|
|
721
721
|
/**
|
|
722
722
|
* <p>The version of the permission associated with this resource share.</p>
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
version?: string;
|
|
725
|
+
version?: string | undefined;
|
|
726
726
|
/**
|
|
727
727
|
* <p>Specifies whether the version of the managed permission used by this resource share is the default version for
|
|
728
728
|
* this managed permission.</p>
|
|
729
729
|
* @public
|
|
730
730
|
*/
|
|
731
|
-
defaultVersion?: boolean;
|
|
731
|
+
defaultVersion?: boolean | undefined;
|
|
732
732
|
/**
|
|
733
733
|
* <p>The name of this managed permission.</p>
|
|
734
734
|
* @public
|
|
735
735
|
*/
|
|
736
|
-
name?: string;
|
|
736
|
+
name?: string | undefined;
|
|
737
737
|
/**
|
|
738
738
|
* <p>The type of resource to which this permission applies. This takes the form of:
|
|
739
739
|
* <code>service-code</code>:<code>resource-code</code>, and is case-insensitive. For
|
|
@@ -741,28 +741,28 @@ export interface ResourceSharePermissionSummary {
|
|
|
741
741
|
* <code>ec2:subnet</code>.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
resourceType?: string;
|
|
744
|
+
resourceType?: string | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>The current status of the permission.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
status?: string;
|
|
749
|
+
status?: string | undefined;
|
|
750
750
|
/**
|
|
751
751
|
* <p>The date and time when the permission was created.</p>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
creationTime?: Date;
|
|
754
|
+
creationTime?: Date | undefined;
|
|
755
755
|
/**
|
|
756
756
|
* <p>The date and time when the permission was last updated.</p>
|
|
757
757
|
* @public
|
|
758
758
|
*/
|
|
759
|
-
lastUpdatedTime?: Date;
|
|
759
|
+
lastUpdatedTime?: Date | undefined;
|
|
760
760
|
/**
|
|
761
761
|
* <p>Specifies whether the managed permission associated with this resource share is the default managed permission for all
|
|
762
762
|
* resources of this resource type.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
isResourceTypeDefault?: boolean;
|
|
765
|
+
isResourceTypeDefault?: boolean | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* <p>The type of managed permission. This can be one of the following values:</p>
|
|
768
768
|
* <ul>
|
|
@@ -780,7 +780,7 @@ export interface ResourceSharePermissionSummary {
|
|
|
780
780
|
* </ul>
|
|
781
781
|
* @public
|
|
782
782
|
*/
|
|
783
|
-
permissionType?: PermissionType;
|
|
783
|
+
permissionType?: PermissionType | undefined;
|
|
784
784
|
/**
|
|
785
785
|
* <p>Indicates what features are available for this resource share. This parameter can have one of
|
|
786
786
|
* the following values:</p>
|
|
@@ -813,12 +813,12 @@ export interface ResourceSharePermissionSummary {
|
|
|
813
813
|
* </ul>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
featureSet?: PermissionFeatureSet;
|
|
816
|
+
featureSet?: PermissionFeatureSet | undefined;
|
|
817
817
|
/**
|
|
818
818
|
* <p>A list of the tag key value pairs currently attached to the permission.</p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
tags?: Tag[];
|
|
821
|
+
tags?: Tag[] | undefined;
|
|
822
822
|
}
|
|
823
823
|
/**
|
|
824
824
|
* @public
|
|
@@ -828,7 +828,7 @@ export interface CreatePermissionResponse {
|
|
|
828
828
|
* <p>A structure with information about this customer managed permission.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
permission?: ResourceSharePermissionSummary;
|
|
831
|
+
permission?: ResourceSharePermissionSummary | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>The idempotency identifier associated with this request. If you
|
|
834
834
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -836,7 +836,7 @@ export interface CreatePermissionResponse {
|
|
|
836
836
|
* parameters must also have the same values that you used in the first call.</p>
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
clientToken?: string;
|
|
839
|
+
clientToken?: string | undefined;
|
|
840
840
|
}
|
|
841
841
|
/**
|
|
842
842
|
* <p>The operation failed because a policy you specified isn't valid.</p>
|
|
@@ -948,7 +948,7 @@ export interface CreatePermissionVersionRequest {
|
|
|
948
948
|
* error.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
clientToken?: string;
|
|
951
|
+
clientToken?: string | undefined;
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
954
|
* @public
|
|
@@ -973,51 +973,51 @@ export interface ResourceSharePermissionDetail {
|
|
|
973
973
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of this RAM managed permission.</p>
|
|
974
974
|
* @public
|
|
975
975
|
*/
|
|
976
|
-
arn?: string;
|
|
976
|
+
arn?: string | undefined;
|
|
977
977
|
/**
|
|
978
978
|
* <p>The version of the permission described in this response.</p>
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
version?: string;
|
|
981
|
+
version?: string | undefined;
|
|
982
982
|
/**
|
|
983
983
|
* <p>Specifies whether the version of the permission represented in this response is the
|
|
984
984
|
* default version for this permission.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
defaultVersion?: boolean;
|
|
987
|
+
defaultVersion?: boolean | undefined;
|
|
988
988
|
/**
|
|
989
989
|
* <p>The name of this permission.</p>
|
|
990
990
|
* @public
|
|
991
991
|
*/
|
|
992
|
-
name?: string;
|
|
992
|
+
name?: string | undefined;
|
|
993
993
|
/**
|
|
994
994
|
* <p>The resource type to which this permission applies.</p>
|
|
995
995
|
* @public
|
|
996
996
|
*/
|
|
997
|
-
resourceType?: string;
|
|
997
|
+
resourceType?: string | undefined;
|
|
998
998
|
/**
|
|
999
999
|
* <p>The permission's effect and actions in JSON format. The <code>effect</code> indicates
|
|
1000
1000
|
* whether the specified actions are allowed or denied. The <code>actions</code> list the
|
|
1001
1001
|
* operations to which the principal is granted or denied access.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
permission?: string;
|
|
1004
|
+
permission?: string | undefined;
|
|
1005
1005
|
/**
|
|
1006
1006
|
* <p>The date and time when the permission was created.</p>
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
creationTime?: Date;
|
|
1009
|
+
creationTime?: Date | undefined;
|
|
1010
1010
|
/**
|
|
1011
1011
|
* <p>The date and time when the permission was last updated.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
lastUpdatedTime?: Date;
|
|
1014
|
+
lastUpdatedTime?: Date | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>Specifies whether the version of the permission represented in this response is the
|
|
1017
1017
|
* default version for all resources of this resource type.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
isResourceTypeDefault?: boolean;
|
|
1020
|
+
isResourceTypeDefault?: boolean | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>The type of managed permission. This can be one of the following values:</p>
|
|
1023
1023
|
* <ul>
|
|
@@ -1035,7 +1035,7 @@ export interface ResourceSharePermissionDetail {
|
|
|
1035
1035
|
* </ul>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
permissionType?: PermissionType;
|
|
1038
|
+
permissionType?: PermissionType | undefined;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* <p>Indicates what features are available for this resource share. This parameter can have one of
|
|
1041
1041
|
* the following values:</p>
|
|
@@ -1068,7 +1068,7 @@ export interface ResourceSharePermissionDetail {
|
|
|
1068
1068
|
* </ul>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
featureSet?: PermissionFeatureSet;
|
|
1071
|
+
featureSet?: PermissionFeatureSet | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p>The current status of the association between the permission and the resource share.
|
|
1074
1074
|
* The following are the possible values:</p>
|
|
@@ -1095,12 +1095,12 @@ export interface ResourceSharePermissionDetail {
|
|
|
1095
1095
|
* </ul>
|
|
1096
1096
|
* @public
|
|
1097
1097
|
*/
|
|
1098
|
-
status?: PermissionStatus;
|
|
1098
|
+
status?: PermissionStatus | undefined;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>The tag key and value pairs attached to the resource share.</p>
|
|
1101
1101
|
* @public
|
|
1102
1102
|
*/
|
|
1103
|
-
tags?: Tag[];
|
|
1103
|
+
tags?: Tag[] | undefined;
|
|
1104
1104
|
}
|
|
1105
1105
|
/**
|
|
1106
1106
|
* @public
|
|
@@ -1110,7 +1110,7 @@ export interface CreatePermissionVersionResponse {
|
|
|
1110
1110
|
* <p>Information about a RAM managed permission.</p>
|
|
1111
1111
|
* @public
|
|
1112
1112
|
*/
|
|
1113
|
-
permission?: ResourceSharePermissionDetail;
|
|
1113
|
+
permission?: ResourceSharePermissionDetail | undefined;
|
|
1114
1114
|
/**
|
|
1115
1115
|
* <p>The idempotency identifier associated with this request. If you
|
|
1116
1116
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1118,7 +1118,7 @@ export interface CreatePermissionVersionResponse {
|
|
|
1118
1118
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1119
1119
|
* @public
|
|
1120
1120
|
*/
|
|
1121
|
-
clientToken?: string;
|
|
1121
|
+
clientToken?: string | undefined;
|
|
1122
1122
|
}
|
|
1123
1123
|
/**
|
|
1124
1124
|
* <p>The operation failed because it would exceed the limit for the number of versions you
|
|
@@ -1148,7 +1148,7 @@ export interface CreateResourceShareRequest {
|
|
|
1148
1148
|
* resource share.</p>
|
|
1149
1149
|
* @public
|
|
1150
1150
|
*/
|
|
1151
|
-
resourceArns?: string[];
|
|
1151
|
+
resourceArns?: string[] | undefined;
|
|
1152
1152
|
/**
|
|
1153
1153
|
* <p>Specifies a list of one or more principals to associate with the resource share.</p>
|
|
1154
1154
|
* <p>You can include the following values:</p>
|
|
@@ -1185,13 +1185,13 @@ export interface CreateResourceShareRequest {
|
|
|
1185
1185
|
* </note>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
principals?: string[];
|
|
1188
|
+
principals?: string[] | undefined;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* <p>Specifies one or more tags to attach to the resource share itself. It doesn't attach the tags to
|
|
1191
1191
|
* the resources associated with the resource share.</p>
|
|
1192
1192
|
* @public
|
|
1193
1193
|
*/
|
|
1194
|
-
tags?: Tag[];
|
|
1194
|
+
tags?: Tag[] | undefined;
|
|
1195
1195
|
/**
|
|
1196
1196
|
* <p>Specifies whether principals outside your organization in Organizations can be associated
|
|
1197
1197
|
* with a resource share. A value of <code>true</code> lets you share with individual Amazon Web Services accounts
|
|
@@ -1200,7 +1200,7 @@ export interface CreateResourceShareRequest {
|
|
|
1200
1200
|
* is <code>true</code>.</p>
|
|
1201
1201
|
* @public
|
|
1202
1202
|
*/
|
|
1203
|
-
allowExternalPrincipals?: boolean;
|
|
1203
|
+
allowExternalPrincipals?: boolean | undefined;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* <p>Specifies a unique, case-sensitive identifier that you provide to
|
|
1206
1206
|
* ensure the idempotency of the request. This lets you safely retry the request without
|
|
@@ -1215,7 +1215,7 @@ export interface CreateResourceShareRequest {
|
|
|
1215
1215
|
* error.</p>
|
|
1216
1216
|
* @public
|
|
1217
1217
|
*/
|
|
1218
|
-
clientToken?: string;
|
|
1218
|
+
clientToken?: string | undefined;
|
|
1219
1219
|
/**
|
|
1220
1220
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> of the RAM permission to associate with the resource share. If you do
|
|
1221
1221
|
* not specify an ARN for the permission, RAM automatically attaches the default version
|
|
@@ -1223,13 +1223,13 @@ export interface CreateResourceShareRequest {
|
|
|
1223
1223
|
* each resource type included in the resource share.</p>
|
|
1224
1224
|
* @public
|
|
1225
1225
|
*/
|
|
1226
|
-
permissionArns?: string[];
|
|
1226
|
+
permissionArns?: string[] | undefined;
|
|
1227
1227
|
/**
|
|
1228
1228
|
* <p>Specifies from which source accounts the service principal
|
|
1229
1229
|
* has access to the resources in this resource share.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
sources?: string[];
|
|
1232
|
+
sources?: string[] | undefined;
|
|
1233
1233
|
}
|
|
1234
1234
|
/**
|
|
1235
1235
|
* @public
|
|
@@ -1268,17 +1268,17 @@ export interface ResourceShare {
|
|
|
1268
1268
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share</p>
|
|
1269
1269
|
* @public
|
|
1270
1270
|
*/
|
|
1271
|
-
resourceShareArn?: string;
|
|
1271
|
+
resourceShareArn?: string | undefined;
|
|
1272
1272
|
/**
|
|
1273
1273
|
* <p>The name of the resource share.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
name?: string;
|
|
1276
|
+
name?: string | undefined;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>The ID of the Amazon Web Services account that owns the resource share.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
owningAccountId?: string;
|
|
1281
|
+
owningAccountId?: string | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>Indicates whether principals outside your organization in Organizations can be associated
|
|
1284
1284
|
* with a resource share.</p>
|
|
@@ -1297,32 +1297,32 @@ export interface ResourceShare {
|
|
|
1297
1297
|
* </ul>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
allowExternalPrincipals?: boolean;
|
|
1300
|
+
allowExternalPrincipals?: boolean | undefined;
|
|
1301
1301
|
/**
|
|
1302
1302
|
* <p>The current status of the resource share.</p>
|
|
1303
1303
|
* @public
|
|
1304
1304
|
*/
|
|
1305
|
-
status?: ResourceShareStatus;
|
|
1305
|
+
status?: ResourceShareStatus | undefined;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* <p>A message about the status of the resource share.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
statusMessage?: string;
|
|
1310
|
+
statusMessage?: string | undefined;
|
|
1311
1311
|
/**
|
|
1312
1312
|
* <p>The tag key and value pairs attached to the resource share.</p>
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
tags?: Tag[];
|
|
1315
|
+
tags?: Tag[] | undefined;
|
|
1316
1316
|
/**
|
|
1317
1317
|
* <p>The date and time when the resource share was created.</p>
|
|
1318
1318
|
* @public
|
|
1319
1319
|
*/
|
|
1320
|
-
creationTime?: Date;
|
|
1320
|
+
creationTime?: Date | undefined;
|
|
1321
1321
|
/**
|
|
1322
1322
|
* <p>The date and time when the resource share was last updated.</p>
|
|
1323
1323
|
* @public
|
|
1324
1324
|
*/
|
|
1325
|
-
lastUpdatedTime?: Date;
|
|
1325
|
+
lastUpdatedTime?: Date | undefined;
|
|
1326
1326
|
/**
|
|
1327
1327
|
* <p>Indicates what features are available for this resource share. This parameter can have one of
|
|
1328
1328
|
* the following values:</p>
|
|
@@ -1355,7 +1355,7 @@ export interface ResourceShare {
|
|
|
1355
1355
|
* </ul>
|
|
1356
1356
|
* @public
|
|
1357
1357
|
*/
|
|
1358
|
-
featureSet?: ResourceShareFeatureSet;
|
|
1358
|
+
featureSet?: ResourceShareFeatureSet | undefined;
|
|
1359
1359
|
}
|
|
1360
1360
|
/**
|
|
1361
1361
|
* @public
|
|
@@ -1365,7 +1365,7 @@ export interface CreateResourceShareResponse {
|
|
|
1365
1365
|
* <p>An object with information about the new resource share.</p>
|
|
1366
1366
|
* @public
|
|
1367
1367
|
*/
|
|
1368
|
-
resourceShare?: ResourceShare;
|
|
1368
|
+
resourceShare?: ResourceShare | undefined;
|
|
1369
1369
|
/**
|
|
1370
1370
|
* <p>The idempotency identifier associated with this request. If you
|
|
1371
1371
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1373,7 +1373,7 @@ export interface CreateResourceShareResponse {
|
|
|
1373
1373
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1374
1374
|
* @public
|
|
1375
1375
|
*/
|
|
1376
|
-
clientToken?: string;
|
|
1376
|
+
clientToken?: string | undefined;
|
|
1377
1377
|
}
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p>The operation failed because it would exceed the limit for tags for your
|
|
@@ -1424,7 +1424,7 @@ export interface DeletePermissionRequest {
|
|
|
1424
1424
|
* error.</p>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
clientToken?: string;
|
|
1427
|
+
clientToken?: string | undefined;
|
|
1428
1428
|
}
|
|
1429
1429
|
/**
|
|
1430
1430
|
* @public
|
|
@@ -1434,7 +1434,7 @@ export interface DeletePermissionResponse {
|
|
|
1434
1434
|
* <p>A boolean that indicates whether the delete operations succeeded.</p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
returnValue?: boolean;
|
|
1437
|
+
returnValue?: boolean | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>The idempotency identifier associated with this request. If you
|
|
1440
1440
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1442,13 +1442,13 @@ export interface DeletePermissionResponse {
|
|
|
1442
1442
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1443
1443
|
* @public
|
|
1444
1444
|
*/
|
|
1445
|
-
clientToken?: string;
|
|
1445
|
+
clientToken?: string | undefined;
|
|
1446
1446
|
/**
|
|
1447
1447
|
* <p>This operation is performed asynchronously, and this response parameter indicates the
|
|
1448
1448
|
* current status.</p>
|
|
1449
1449
|
* @public
|
|
1450
1450
|
*/
|
|
1451
|
-
permissionStatus?: PermissionStatus;
|
|
1451
|
+
permissionStatus?: PermissionStatus | undefined;
|
|
1452
1452
|
}
|
|
1453
1453
|
/**
|
|
1454
1454
|
* @public
|
|
@@ -1485,7 +1485,7 @@ export interface DeletePermissionVersionRequest {
|
|
|
1485
1485
|
* error.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
clientToken?: string;
|
|
1488
|
+
clientToken?: string | undefined;
|
|
1489
1489
|
}
|
|
1490
1490
|
/**
|
|
1491
1491
|
* @public
|
|
@@ -1495,7 +1495,7 @@ export interface DeletePermissionVersionResponse {
|
|
|
1495
1495
|
* <p>A boolean value that indicates whether the operation is successful.</p>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
returnValue?: boolean;
|
|
1498
|
+
returnValue?: boolean | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>The idempotency identifier associated with this request. If you
|
|
1501
1501
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1503,13 +1503,13 @@ export interface DeletePermissionVersionResponse {
|
|
|
1503
1503
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1504
1504
|
* @public
|
|
1505
1505
|
*/
|
|
1506
|
-
clientToken?: string;
|
|
1506
|
+
clientToken?: string | undefined;
|
|
1507
1507
|
/**
|
|
1508
1508
|
* <p>This operation is performed asynchronously, and this response parameter indicates the
|
|
1509
1509
|
* current status.</p>
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
permissionStatus?: PermissionStatus;
|
|
1512
|
+
permissionStatus?: PermissionStatus | undefined;
|
|
1513
1513
|
}
|
|
1514
1514
|
/**
|
|
1515
1515
|
* @public
|
|
@@ -1534,7 +1534,7 @@ export interface DeleteResourceShareRequest {
|
|
|
1534
1534
|
* error.</p>
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
clientToken?: string;
|
|
1537
|
+
clientToken?: string | undefined;
|
|
1538
1538
|
}
|
|
1539
1539
|
/**
|
|
1540
1540
|
* @public
|
|
@@ -1545,7 +1545,7 @@ export interface DeleteResourceShareResponse {
|
|
|
1545
1545
|
* A value of <code>false</code> indicates that the request failed.</p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
returnValue?: boolean;
|
|
1548
|
+
returnValue?: boolean | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>The idempotency identifier associated with this request. If you
|
|
1551
1551
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1553,7 +1553,7 @@ export interface DeleteResourceShareResponse {
|
|
|
1553
1553
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
clientToken?: string;
|
|
1556
|
+
clientToken?: string | undefined;
|
|
1557
1557
|
}
|
|
1558
1558
|
/**
|
|
1559
1559
|
* @public
|
|
@@ -1571,7 +1571,7 @@ export interface DisassociateResourceShareRequest {
|
|
|
1571
1571
|
* associated with the resource share.</p>
|
|
1572
1572
|
* @public
|
|
1573
1573
|
*/
|
|
1574
|
-
resourceArns?: string[];
|
|
1574
|
+
resourceArns?: string[] | undefined;
|
|
1575
1575
|
/**
|
|
1576
1576
|
* <p>Specifies a list of one or more principals that no longer are to have access to the
|
|
1577
1577
|
* resources in this resource share.</p>
|
|
@@ -1609,7 +1609,7 @@ export interface DisassociateResourceShareRequest {
|
|
|
1609
1609
|
* </note>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
principals?: string[];
|
|
1612
|
+
principals?: string[] | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>Specifies a unique, case-sensitive identifier that you provide to
|
|
1615
1615
|
* ensure the idempotency of the request. This lets you safely retry the request without
|
|
@@ -1624,13 +1624,13 @@ export interface DisassociateResourceShareRequest {
|
|
|
1624
1624
|
* error.</p>
|
|
1625
1625
|
* @public
|
|
1626
1626
|
*/
|
|
1627
|
-
clientToken?: string;
|
|
1627
|
+
clientToken?: string | undefined;
|
|
1628
1628
|
/**
|
|
1629
1629
|
* <p>Specifies from which source accounts the
|
|
1630
1630
|
* service principal no longer has access to the resources in this resource share.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
sources?: string[];
|
|
1633
|
+
sources?: string[] | undefined;
|
|
1634
1634
|
}
|
|
1635
1635
|
/**
|
|
1636
1636
|
* @public
|
|
@@ -1641,7 +1641,7 @@ export interface DisassociateResourceShareResponse {
|
|
|
1641
1641
|
* resource share.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
resourceShareAssociations?: ResourceShareAssociation[];
|
|
1644
|
+
resourceShareAssociations?: ResourceShareAssociation[] | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>The idempotency identifier associated with this request. If you
|
|
1647
1647
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1649,7 +1649,7 @@ export interface DisassociateResourceShareResponse {
|
|
|
1649
1649
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1650
1650
|
* @public
|
|
1651
1651
|
*/
|
|
1652
|
-
clientToken?: string;
|
|
1652
|
+
clientToken?: string | undefined;
|
|
1653
1653
|
}
|
|
1654
1654
|
/**
|
|
1655
1655
|
* @public
|
|
@@ -1680,7 +1680,7 @@ export interface DisassociateResourceSharePermissionRequest {
|
|
|
1680
1680
|
* error.</p>
|
|
1681
1681
|
* @public
|
|
1682
1682
|
*/
|
|
1683
|
-
clientToken?: string;
|
|
1683
|
+
clientToken?: string | undefined;
|
|
1684
1684
|
}
|
|
1685
1685
|
/**
|
|
1686
1686
|
* @public
|
|
@@ -1691,7 +1691,7 @@ export interface DisassociateResourceSharePermissionResponse {
|
|
|
1691
1691
|
* A value of <code>false</code> indicates that the request failed.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
returnValue?: boolean;
|
|
1694
|
+
returnValue?: boolean | undefined;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* <p>The idempotency identifier associated with this request. If you
|
|
1697
1697
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -1699,7 +1699,7 @@ export interface DisassociateResourceSharePermissionResponse {
|
|
|
1699
1699
|
* parameters must also have the same values that you used in the first call.</p>
|
|
1700
1700
|
* @public
|
|
1701
1701
|
*/
|
|
1702
|
-
clientToken?: string;
|
|
1702
|
+
clientToken?: string | undefined;
|
|
1703
1703
|
}
|
|
1704
1704
|
/**
|
|
1705
1705
|
* @public
|
|
@@ -1715,7 +1715,7 @@ export interface EnableSharingWithAwsOrganizationResponse {
|
|
|
1715
1715
|
* A value of <code>false</code> indicates that the request failed.</p>
|
|
1716
1716
|
* @public
|
|
1717
1717
|
*/
|
|
1718
|
-
returnValue?: boolean;
|
|
1718
|
+
returnValue?: boolean | undefined;
|
|
1719
1719
|
}
|
|
1720
1720
|
/**
|
|
1721
1721
|
* @public
|
|
@@ -1734,7 +1734,7 @@ export interface GetPermissionRequest {
|
|
|
1734
1734
|
* <p>To see the list of available versions, use <a>ListPermissionVersions</a>.</p>
|
|
1735
1735
|
* @public
|
|
1736
1736
|
*/
|
|
1737
|
-
permissionVersion?: number;
|
|
1737
|
+
permissionVersion?: number | undefined;
|
|
1738
1738
|
}
|
|
1739
1739
|
/**
|
|
1740
1740
|
* @public
|
|
@@ -1744,7 +1744,7 @@ export interface GetPermissionResponse {
|
|
|
1744
1744
|
* <p>An object with details about the permission.</p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
permission?: ResourceSharePermissionDetail;
|
|
1747
|
+
permission?: ResourceSharePermissionDetail | undefined;
|
|
1748
1748
|
}
|
|
1749
1749
|
/**
|
|
1750
1750
|
* @public
|
|
@@ -1759,7 +1759,7 @@ export interface GetResourcePoliciesRequest {
|
|
|
1759
1759
|
* <p>Specifies the principal.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
principal?: string;
|
|
1762
|
+
principal?: string | undefined;
|
|
1763
1763
|
/**
|
|
1764
1764
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
1765
1765
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -1768,7 +1768,7 @@ export interface GetResourcePoliciesRequest {
|
|
|
1768
1768
|
* next page of results.</p>
|
|
1769
1769
|
* @public
|
|
1770
1770
|
*/
|
|
1771
|
-
nextToken?: string;
|
|
1771
|
+
nextToken?: string | undefined;
|
|
1772
1772
|
/**
|
|
1773
1773
|
* <p>Specifies the total number of results that you want included on each page
|
|
1774
1774
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -1781,7 +1781,7 @@ export interface GetResourcePoliciesRequest {
|
|
|
1781
1781
|
* of the results.</p>
|
|
1782
1782
|
* @public
|
|
1783
1783
|
*/
|
|
1784
|
-
maxResults?: number;
|
|
1784
|
+
maxResults?: number | undefined;
|
|
1785
1785
|
}
|
|
1786
1786
|
/**
|
|
1787
1787
|
* @public
|
|
@@ -1791,7 +1791,7 @@ export interface GetResourcePoliciesResponse {
|
|
|
1791
1791
|
* <p>An array of resource policy documents in JSON format.</p>
|
|
1792
1792
|
* @public
|
|
1793
1793
|
*/
|
|
1794
|
-
policies?: string[];
|
|
1794
|
+
policies?: string[] | undefined;
|
|
1795
1795
|
/**
|
|
1796
1796
|
* <p>If present, this value indicates that more output is available than
|
|
1797
1797
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -1800,7 +1800,7 @@ export interface GetResourcePoliciesResponse {
|
|
|
1800
1800
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
nextToken?: string;
|
|
1803
|
+
nextToken?: string | undefined;
|
|
1804
1804
|
}
|
|
1805
1805
|
/**
|
|
1806
1806
|
* <p>The operation failed because the specified value for <code>NextToken</code> isn't
|
|
@@ -1855,14 +1855,14 @@ export interface GetResourceShareAssociationsRequest {
|
|
|
1855
1855
|
* retrieve.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
resourceShareArns?: string[];
|
|
1858
|
+
resourceShareArns?: string[] | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of a resource whose resource shares you want to retrieve.</p>
|
|
1861
1861
|
* <p>You cannot specify this parameter if the association type is
|
|
1862
1862
|
* <code>PRINCIPAL</code>.</p>
|
|
1863
1863
|
* @public
|
|
1864
1864
|
*/
|
|
1865
|
-
resourceArn?: string;
|
|
1865
|
+
resourceArn?: string | undefined;
|
|
1866
1866
|
/**
|
|
1867
1867
|
* <p>Specifies the ID of the principal whose resource shares you want to retrieve. This can be an
|
|
1868
1868
|
* Amazon Web Services account ID, an organization ID, an organizational unit ID, or the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of an
|
|
@@ -1871,12 +1871,12 @@ export interface GetResourceShareAssociationsRequest {
|
|
|
1871
1871
|
* <code>RESOURCE</code>.</p>
|
|
1872
1872
|
* @public
|
|
1873
1873
|
*/
|
|
1874
|
-
principal?: string;
|
|
1874
|
+
principal?: string | undefined;
|
|
1875
1875
|
/**
|
|
1876
1876
|
* <p>Specifies that you want to retrieve only associations that have this status.</p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
associationStatus?: ResourceShareAssociationStatus;
|
|
1879
|
+
associationStatus?: ResourceShareAssociationStatus | undefined;
|
|
1880
1880
|
/**
|
|
1881
1881
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
1882
1882
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -1885,7 +1885,7 @@ export interface GetResourceShareAssociationsRequest {
|
|
|
1885
1885
|
* next page of results.</p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
nextToken?: string;
|
|
1888
|
+
nextToken?: string | undefined;
|
|
1889
1889
|
/**
|
|
1890
1890
|
* <p>Specifies the total number of results that you want included on each page
|
|
1891
1891
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -1898,7 +1898,7 @@ export interface GetResourceShareAssociationsRequest {
|
|
|
1898
1898
|
* of the results.</p>
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
maxResults?: number;
|
|
1901
|
+
maxResults?: number | undefined;
|
|
1902
1902
|
}
|
|
1903
1903
|
/**
|
|
1904
1904
|
* @public
|
|
@@ -1908,7 +1908,7 @@ export interface GetResourceShareAssociationsResponse {
|
|
|
1908
1908
|
* <p>An array of objects that contain the details about the associations.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
resourceShareAssociations?: ResourceShareAssociation[];
|
|
1911
|
+
resourceShareAssociations?: ResourceShareAssociation[] | undefined;
|
|
1912
1912
|
/**
|
|
1913
1913
|
* <p>If present, this value indicates that more output is available than
|
|
1914
1914
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -1917,7 +1917,7 @@ export interface GetResourceShareAssociationsResponse {
|
|
|
1917
1917
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
1918
1918
|
* @public
|
|
1919
1919
|
*/
|
|
1920
|
-
nextToken?: string;
|
|
1920
|
+
nextToken?: string | undefined;
|
|
1921
1921
|
}
|
|
1922
1922
|
/**
|
|
1923
1923
|
* @public
|
|
@@ -1927,14 +1927,14 @@ export interface GetResourceShareInvitationsRequest {
|
|
|
1927
1927
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> of the resource share invitations you want information about.</p>
|
|
1928
1928
|
* @public
|
|
1929
1929
|
*/
|
|
1930
|
-
resourceShareInvitationArns?: string[];
|
|
1930
|
+
resourceShareInvitationArns?: string[] | undefined;
|
|
1931
1931
|
/**
|
|
1932
1932
|
* <p>Specifies that you want details about invitations only for the resource shares described by this
|
|
1933
1933
|
* list of <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>
|
|
1934
1934
|
* </p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
resourceShareArns?: string[];
|
|
1937
|
+
resourceShareArns?: string[] | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
1940
1940
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -1943,7 +1943,7 @@ export interface GetResourceShareInvitationsRequest {
|
|
|
1943
1943
|
* next page of results.</p>
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
nextToken?: string;
|
|
1946
|
+
nextToken?: string | undefined;
|
|
1947
1947
|
/**
|
|
1948
1948
|
* <p>Specifies the total number of results that you want included on each page
|
|
1949
1949
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -1956,7 +1956,7 @@ export interface GetResourceShareInvitationsRequest {
|
|
|
1956
1956
|
* of the results.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
maxResults?: number;
|
|
1959
|
+
maxResults?: number | undefined;
|
|
1960
1960
|
}
|
|
1961
1961
|
/**
|
|
1962
1962
|
* @public
|
|
@@ -1966,7 +1966,7 @@ export interface GetResourceShareInvitationsResponse {
|
|
|
1966
1966
|
* <p>An array of objects that contain the details about the invitations.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
resourceShareInvitations?: ResourceShareInvitation[];
|
|
1969
|
+
resourceShareInvitations?: ResourceShareInvitation[] | undefined;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* <p>If present, this value indicates that more output is available than
|
|
1972
1972
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -1975,7 +1975,7 @@ export interface GetResourceShareInvitationsResponse {
|
|
|
1975
1975
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
nextToken?: string;
|
|
1978
|
+
nextToken?: string | undefined;
|
|
1979
1979
|
}
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>The operation failed because the specified value for <code>MaxResults</code> isn't
|
|
@@ -2012,13 +2012,13 @@ export interface TagFilter {
|
|
|
2012
2012
|
* <p>The tag key. This must have a valid string value and can't be empty.</p>
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
tagKey?: string;
|
|
2015
|
+
tagKey?: string | undefined;
|
|
2016
2016
|
/**
|
|
2017
2017
|
* <p>A list of zero or more tag values. If no values are provided, then the filter matches
|
|
2018
2018
|
* any tag with the specified key, regardless of its value.</p>
|
|
2019
2019
|
* @public
|
|
2020
2020
|
*/
|
|
2021
|
-
tagValues?: string[];
|
|
2021
|
+
tagValues?: string[] | undefined;
|
|
2022
2022
|
}
|
|
2023
2023
|
/**
|
|
2024
2024
|
* @public
|
|
@@ -2028,13 +2028,13 @@ export interface GetResourceSharesRequest {
|
|
|
2028
2028
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> of individual resource shares that you want information about.</p>
|
|
2029
2029
|
* @public
|
|
2030
2030
|
*/
|
|
2031
|
-
resourceShareArns?: string[];
|
|
2031
|
+
resourceShareArns?: string[] | undefined;
|
|
2032
2032
|
/**
|
|
2033
2033
|
* <p>Specifies that you want to retrieve details of only those resource shares that have this
|
|
2034
2034
|
* status.</p>
|
|
2035
2035
|
* @public
|
|
2036
2036
|
*/
|
|
2037
|
-
resourceShareStatus?: ResourceShareStatus;
|
|
2037
|
+
resourceShareStatus?: ResourceShareStatus | undefined;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* <p>Specifies that you want to retrieve details of only those resource shares that match the
|
|
2040
2040
|
* following:</p>
|
|
@@ -2062,13 +2062,13 @@ export interface GetResourceSharesRequest {
|
|
|
2062
2062
|
* about.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
name?: string;
|
|
2065
|
+
name?: string | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>Specifies that you want to retrieve details of only those resource shares that match the
|
|
2068
2068
|
* specified tag keys and values.</p>
|
|
2069
2069
|
* @public
|
|
2070
2070
|
*/
|
|
2071
|
-
tagFilters?: TagFilter[];
|
|
2071
|
+
tagFilters?: TagFilter[] | undefined;
|
|
2072
2072
|
/**
|
|
2073
2073
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
2074
2074
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -2077,7 +2077,7 @@ export interface GetResourceSharesRequest {
|
|
|
2077
2077
|
* next page of results.</p>
|
|
2078
2078
|
* @public
|
|
2079
2079
|
*/
|
|
2080
|
-
nextToken?: string;
|
|
2080
|
+
nextToken?: string | undefined;
|
|
2081
2081
|
/**
|
|
2082
2082
|
* <p>Specifies the total number of results that you want included on each page
|
|
2083
2083
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2090,19 +2090,19 @@ export interface GetResourceSharesRequest {
|
|
|
2090
2090
|
* of the results.</p>
|
|
2091
2091
|
* @public
|
|
2092
2092
|
*/
|
|
2093
|
-
maxResults?: number;
|
|
2093
|
+
maxResults?: number | undefined;
|
|
2094
2094
|
/**
|
|
2095
2095
|
* <p>Specifies that you want to retrieve details of only those resource shares that use the managed permission with
|
|
2096
2096
|
* this <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a>.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
permissionArn?: string;
|
|
2099
|
+
permissionArn?: string | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>Specifies that you want to retrieve details for only those resource shares that use the
|
|
2102
2102
|
* specified version of the managed permission.</p>
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
permissionVersion?: number;
|
|
2105
|
+
permissionVersion?: number | undefined;
|
|
2106
2106
|
}
|
|
2107
2107
|
/**
|
|
2108
2108
|
* @public
|
|
@@ -2112,7 +2112,7 @@ export interface GetResourceSharesResponse {
|
|
|
2112
2112
|
* <p>An array of objects that contain the information about the resource shares.</p>
|
|
2113
2113
|
* @public
|
|
2114
2114
|
*/
|
|
2115
|
-
resourceShares?: ResourceShare[];
|
|
2115
|
+
resourceShares?: ResourceShare[] | undefined;
|
|
2116
2116
|
/**
|
|
2117
2117
|
* <p>If present, this value indicates that more output is available than
|
|
2118
2118
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2121,7 +2121,7 @@ export interface GetResourceSharesResponse {
|
|
|
2121
2121
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2122
2122
|
* @public
|
|
2123
2123
|
*/
|
|
2124
|
-
nextToken?: string;
|
|
2124
|
+
nextToken?: string | undefined;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
* @public
|
|
@@ -2153,7 +2153,7 @@ export interface ListPendingInvitationResourcesRequest {
|
|
|
2153
2153
|
* next page of results.</p>
|
|
2154
2154
|
* @public
|
|
2155
2155
|
*/
|
|
2156
|
-
nextToken?: string;
|
|
2156
|
+
nextToken?: string | undefined;
|
|
2157
2157
|
/**
|
|
2158
2158
|
* <p>Specifies the total number of results that you want included on each page
|
|
2159
2159
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2166,7 +2166,7 @@ export interface ListPendingInvitationResourcesRequest {
|
|
|
2166
2166
|
* of the results.</p>
|
|
2167
2167
|
* @public
|
|
2168
2168
|
*/
|
|
2169
|
-
maxResults?: number;
|
|
2169
|
+
maxResults?: number | undefined;
|
|
2170
2170
|
/**
|
|
2171
2171
|
* <p>Specifies that you want the results to include only
|
|
2172
2172
|
* resources that have the specified scope.</p>
|
|
@@ -2190,7 +2190,7 @@ export interface ListPendingInvitationResourcesRequest {
|
|
|
2190
2190
|
* <p>The default value is <code>ALL</code>.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
resourceRegionScope?: ResourceRegionScopeFilter;
|
|
2193
|
+
resourceRegionScope?: ResourceRegionScopeFilter | undefined;
|
|
2194
2194
|
}
|
|
2195
2195
|
/**
|
|
2196
2196
|
* @public
|
|
@@ -2228,7 +2228,7 @@ export interface Resource {
|
|
|
2228
2228
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource.</p>
|
|
2229
2229
|
* @public
|
|
2230
2230
|
*/
|
|
2231
|
-
arn?: string;
|
|
2231
|
+
arn?: string | undefined;
|
|
2232
2232
|
/**
|
|
2233
2233
|
* <p>The resource type. This takes the form of:
|
|
2234
2234
|
* <code>service-code</code>:<code>resource-code</code>, and is case-insensitive. For
|
|
@@ -2236,39 +2236,39 @@ export interface Resource {
|
|
|
2236
2236
|
* <code>ec2:subnet</code>.</p>
|
|
2237
2237
|
* @public
|
|
2238
2238
|
*/
|
|
2239
|
-
type?: string;
|
|
2239
|
+
type?: string | undefined;
|
|
2240
2240
|
/**
|
|
2241
2241
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource share this resource is associated with.</p>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
resourceShareArn?: string;
|
|
2244
|
+
resourceShareArn?: string | undefined;
|
|
2245
2245
|
/**
|
|
2246
2246
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the resource group. This value is available only if the resource is
|
|
2247
2247
|
* part of a resource group.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
resourceGroupArn?: string;
|
|
2250
|
+
resourceGroupArn?: string | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The current status of the resource.</p>
|
|
2253
2253
|
* @public
|
|
2254
2254
|
*/
|
|
2255
|
-
status?: ResourceStatus;
|
|
2255
|
+
status?: ResourceStatus | undefined;
|
|
2256
2256
|
/**
|
|
2257
2257
|
* <p>A message about the status of the resource.</p>
|
|
2258
2258
|
* @public
|
|
2259
2259
|
*/
|
|
2260
|
-
statusMessage?: string;
|
|
2260
|
+
statusMessage?: string | undefined;
|
|
2261
2261
|
/**
|
|
2262
2262
|
* <p>The date and time when the resource was associated with the resource share.</p>
|
|
2263
2263
|
* @public
|
|
2264
2264
|
*/
|
|
2265
|
-
creationTime?: Date;
|
|
2265
|
+
creationTime?: Date | undefined;
|
|
2266
2266
|
/**
|
|
2267
2267
|
* <p>The date an time when the association between the resource and the resource share was
|
|
2268
2268
|
* last updated.</p>
|
|
2269
2269
|
* @public
|
|
2270
2270
|
*/
|
|
2271
|
-
lastUpdatedTime?: Date;
|
|
2271
|
+
lastUpdatedTime?: Date | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* <p>Specifies the scope of visibility of this resource:</p>
|
|
2274
2274
|
* <ul>
|
|
@@ -2286,7 +2286,7 @@ export interface Resource {
|
|
|
2286
2286
|
* </ul>
|
|
2287
2287
|
* @public
|
|
2288
2288
|
*/
|
|
2289
|
-
resourceRegionScope?: ResourceRegionScope;
|
|
2289
|
+
resourceRegionScope?: ResourceRegionScope | undefined;
|
|
2290
2290
|
}
|
|
2291
2291
|
/**
|
|
2292
2292
|
* @public
|
|
@@ -2297,7 +2297,7 @@ export interface ListPendingInvitationResourcesResponse {
|
|
|
2297
2297
|
* specified resource share.</p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
resources?: Resource[];
|
|
2300
|
+
resources?: Resource[] | undefined;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>If present, this value indicates that more output is available than
|
|
2303
2303
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2306,7 +2306,7 @@ export interface ListPendingInvitationResourcesResponse {
|
|
|
2306
2306
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
nextToken?: string;
|
|
2309
|
+
nextToken?: string | undefined;
|
|
2310
2310
|
}
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>The operation failed because a required input parameter is missing.</p>
|
|
@@ -2328,7 +2328,7 @@ export interface ListPermissionAssociationsRequest {
|
|
|
2328
2328
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the managed permission.</p>
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
permissionArn?: string;
|
|
2331
|
+
permissionArn?: string | undefined;
|
|
2332
2332
|
/**
|
|
2333
2333
|
* <p>Specifies that you want to list only those associations with resource shares that use this
|
|
2334
2334
|
* version of the managed permission. If you don't provide a value for this parameter, then the operation
|
|
@@ -2336,25 +2336,25 @@ export interface ListPermissionAssociationsRequest {
|
|
|
2336
2336
|
* managed permission.</p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
permissionVersion?: number;
|
|
2339
|
+
permissionVersion?: number | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>Specifies that you want to list only those associations with resource shares that match this
|
|
2342
2342
|
* status.</p>
|
|
2343
2343
|
* @public
|
|
2344
2344
|
*/
|
|
2345
|
-
associationStatus?: ResourceShareAssociationStatus;
|
|
2345
|
+
associationStatus?: ResourceShareAssociationStatus | undefined;
|
|
2346
2346
|
/**
|
|
2347
2347
|
* <p>Specifies that you want to list only those associations with resource shares that include at
|
|
2348
2348
|
* least one resource of this resource type.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
resourceType?: string;
|
|
2351
|
+
resourceType?: string | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>Specifies that you want to list only those associations with resource shares that have a
|
|
2354
2354
|
* <code>featureSet</code> with this value.</p>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
featureSet?: PermissionFeatureSet;
|
|
2357
|
+
featureSet?: PermissionFeatureSet | undefined;
|
|
2358
2358
|
/**
|
|
2359
2359
|
* <p>When <code>true</code>, specifies that you want to list only those associations with
|
|
2360
2360
|
* resource shares that use the default version of the specified managed permission.</p>
|
|
@@ -2362,7 +2362,7 @@ export interface ListPermissionAssociationsRequest {
|
|
|
2362
2362
|
* any version of the specified managed permission.</p>
|
|
2363
2363
|
* @public
|
|
2364
2364
|
*/
|
|
2365
|
-
defaultVersion?: boolean;
|
|
2365
|
+
defaultVersion?: boolean | undefined;
|
|
2366
2366
|
/**
|
|
2367
2367
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
2368
2368
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -2371,7 +2371,7 @@ export interface ListPermissionAssociationsRequest {
|
|
|
2371
2371
|
* next page of results.</p>
|
|
2372
2372
|
* @public
|
|
2373
2373
|
*/
|
|
2374
|
-
nextToken?: string;
|
|
2374
|
+
nextToken?: string | undefined;
|
|
2375
2375
|
/**
|
|
2376
2376
|
* <p>Specifies the total number of results that you want included on each page
|
|
2377
2377
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2384,7 +2384,7 @@ export interface ListPermissionAssociationsRequest {
|
|
|
2384
2384
|
* of the results.</p>
|
|
2385
2385
|
* @public
|
|
2386
2386
|
*/
|
|
2387
|
-
maxResults?: number;
|
|
2387
|
+
maxResults?: number | undefined;
|
|
2388
2388
|
}
|
|
2389
2389
|
/**
|
|
2390
2390
|
* <p>An object that describes a managed permission associated with a resource share.</p>
|
|
@@ -2395,23 +2395,23 @@ export interface AssociatedPermission {
|
|
|
2395
2395
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the associated managed permission.</p>
|
|
2396
2396
|
* @public
|
|
2397
2397
|
*/
|
|
2398
|
-
arn?: string;
|
|
2398
|
+
arn?: string | undefined;
|
|
2399
2399
|
/**
|
|
2400
2400
|
* <p>The version of the permission currently associated with the resource share.</p>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
permissionVersion?: string;
|
|
2403
|
+
permissionVersion?: string | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>Indicates whether the associated resource share is using the default version of the
|
|
2406
2406
|
* permission.</p>
|
|
2407
2407
|
* @public
|
|
2408
2408
|
*/
|
|
2409
|
-
defaultVersion?: boolean;
|
|
2409
|
+
defaultVersion?: boolean | undefined;
|
|
2410
2410
|
/**
|
|
2411
2411
|
* <p>The resource type to which this permission applies.</p>
|
|
2412
2412
|
* @public
|
|
2413
2413
|
*/
|
|
2414
|
-
resourceType?: string;
|
|
2414
|
+
resourceType?: string | undefined;
|
|
2415
2415
|
/**
|
|
2416
2416
|
* <p>The current status of the association between the permission and the resource share.
|
|
2417
2417
|
* The following are the possible values:</p>
|
|
@@ -2438,7 +2438,7 @@ export interface AssociatedPermission {
|
|
|
2438
2438
|
* </ul>
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
status?: string;
|
|
2441
|
+
status?: string | undefined;
|
|
2442
2442
|
/**
|
|
2443
2443
|
* <p>Indicates what features are available for this resource share. This parameter can have one of
|
|
2444
2444
|
* the following values:</p>
|
|
@@ -2471,18 +2471,18 @@ export interface AssociatedPermission {
|
|
|
2471
2471
|
* </ul>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
featureSet?: PermissionFeatureSet;
|
|
2474
|
+
featureSet?: PermissionFeatureSet | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p>The date and time when the association between the permission and the resource share
|
|
2477
2477
|
* was last updated.</p>
|
|
2478
2478
|
* @public
|
|
2479
2479
|
*/
|
|
2480
|
-
lastUpdatedTime?: Date;
|
|
2480
|
+
lastUpdatedTime?: Date | undefined;
|
|
2481
2481
|
/**
|
|
2482
2482
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of a resource share associated with this permission.</p>
|
|
2483
2483
|
* @public
|
|
2484
2484
|
*/
|
|
2485
|
-
resourceShareArn?: string;
|
|
2485
|
+
resourceShareArn?: string | undefined;
|
|
2486
2486
|
}
|
|
2487
2487
|
/**
|
|
2488
2488
|
* @public
|
|
@@ -2492,7 +2492,7 @@ export interface ListPermissionAssociationsResponse {
|
|
|
2492
2492
|
* <p>A structure with information about this customer managed permission.</p>
|
|
2493
2493
|
* @public
|
|
2494
2494
|
*/
|
|
2495
|
-
permissions?: AssociatedPermission[];
|
|
2495
|
+
permissions?: AssociatedPermission[] | undefined;
|
|
2496
2496
|
/**
|
|
2497
2497
|
* <p>If present, this value indicates that more output is available than
|
|
2498
2498
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2501,7 +2501,7 @@ export interface ListPermissionAssociationsResponse {
|
|
|
2501
2501
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2502
2502
|
* @public
|
|
2503
2503
|
*/
|
|
2504
|
-
nextToken?: string;
|
|
2504
|
+
nextToken?: string | undefined;
|
|
2505
2505
|
}
|
|
2506
2506
|
/**
|
|
2507
2507
|
* @public
|
|
@@ -2528,7 +2528,7 @@ export interface ListPermissionsRequest {
|
|
|
2528
2528
|
* operation to get the specific string required.</p>
|
|
2529
2529
|
* @public
|
|
2530
2530
|
*/
|
|
2531
|
-
resourceType?: string;
|
|
2531
|
+
resourceType?: string | undefined;
|
|
2532
2532
|
/**
|
|
2533
2533
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
2534
2534
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -2537,7 +2537,7 @@ export interface ListPermissionsRequest {
|
|
|
2537
2537
|
* next page of results.</p>
|
|
2538
2538
|
* @public
|
|
2539
2539
|
*/
|
|
2540
|
-
nextToken?: string;
|
|
2540
|
+
nextToken?: string | undefined;
|
|
2541
2541
|
/**
|
|
2542
2542
|
* <p>Specifies the total number of results that you want included on each page
|
|
2543
2543
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2550,7 +2550,7 @@ export interface ListPermissionsRequest {
|
|
|
2550
2550
|
* of the results.</p>
|
|
2551
2551
|
* @public
|
|
2552
2552
|
*/
|
|
2553
|
-
maxResults?: number;
|
|
2553
|
+
maxResults?: number | undefined;
|
|
2554
2554
|
/**
|
|
2555
2555
|
* <p>Specifies that you want to list only permissions of this type:</p>
|
|
2556
2556
|
* <ul>
|
|
@@ -2570,7 +2570,7 @@ export interface ListPermissionsRequest {
|
|
|
2570
2570
|
* <p>If you don't specify this parameter, the default is <code>All</code>.</p>
|
|
2571
2571
|
* @public
|
|
2572
2572
|
*/
|
|
2573
|
-
permissionType?: PermissionTypeFilter;
|
|
2573
|
+
permissionType?: PermissionTypeFilter | undefined;
|
|
2574
2574
|
}
|
|
2575
2575
|
/**
|
|
2576
2576
|
* @public
|
|
@@ -2580,7 +2580,7 @@ export interface ListPermissionsResponse {
|
|
|
2580
2580
|
* <p>An array of objects with information about the permissions.</p>
|
|
2581
2581
|
* @public
|
|
2582
2582
|
*/
|
|
2583
|
-
permissions?: ResourceSharePermissionSummary[];
|
|
2583
|
+
permissions?: ResourceSharePermissionSummary[] | undefined;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* <p>If present, this value indicates that more output is available than
|
|
2586
2586
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2589,7 +2589,7 @@ export interface ListPermissionsResponse {
|
|
|
2589
2589
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2590
2590
|
* @public
|
|
2591
2591
|
*/
|
|
2592
|
-
nextToken?: string;
|
|
2592
|
+
nextToken?: string | undefined;
|
|
2593
2593
|
}
|
|
2594
2594
|
/**
|
|
2595
2595
|
* @public
|
|
@@ -2610,7 +2610,7 @@ export interface ListPermissionVersionsRequest {
|
|
|
2610
2610
|
* next page of results.</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
nextToken?: string;
|
|
2613
|
+
nextToken?: string | undefined;
|
|
2614
2614
|
/**
|
|
2615
2615
|
* <p>Specifies the total number of results that you want included on each page
|
|
2616
2616
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2623,7 +2623,7 @@ export interface ListPermissionVersionsRequest {
|
|
|
2623
2623
|
* of the results.</p>
|
|
2624
2624
|
* @public
|
|
2625
2625
|
*/
|
|
2626
|
-
maxResults?: number;
|
|
2626
|
+
maxResults?: number | undefined;
|
|
2627
2627
|
}
|
|
2628
2628
|
/**
|
|
2629
2629
|
* @public
|
|
@@ -2633,7 +2633,7 @@ export interface ListPermissionVersionsResponse {
|
|
|
2633
2633
|
* <p>An array of objects that contain details for each of the available versions.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
permissions?: ResourceSharePermissionSummary[];
|
|
2636
|
+
permissions?: ResourceSharePermissionSummary[] | undefined;
|
|
2637
2637
|
/**
|
|
2638
2638
|
* <p>If present, this value indicates that more output is available than
|
|
2639
2639
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2642,7 +2642,7 @@ export interface ListPermissionVersionsResponse {
|
|
|
2642
2642
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2643
2643
|
* @public
|
|
2644
2644
|
*/
|
|
2645
|
-
nextToken?: string;
|
|
2645
|
+
nextToken?: string | undefined;
|
|
2646
2646
|
}
|
|
2647
2647
|
/**
|
|
2648
2648
|
* @public
|
|
@@ -2675,7 +2675,7 @@ export interface ListPrincipalsRequest {
|
|
|
2675
2675
|
* <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a>.</p>
|
|
2676
2676
|
* @public
|
|
2677
2677
|
*/
|
|
2678
|
-
resourceArn?: string;
|
|
2678
|
+
resourceArn?: string | undefined;
|
|
2679
2679
|
/**
|
|
2680
2680
|
* <p>Specifies that you want to list information for only the listed principals.</p>
|
|
2681
2681
|
* <p>You can include the following values:</p>
|
|
@@ -2712,7 +2712,7 @@ export interface ListPrincipalsRequest {
|
|
|
2712
2712
|
* </note>
|
|
2713
2713
|
* @public
|
|
2714
2714
|
*/
|
|
2715
|
-
principals?: string[];
|
|
2715
|
+
principals?: string[] | undefined;
|
|
2716
2716
|
/**
|
|
2717
2717
|
* <p>Specifies that you want to list information for only principals associated with resource shares
|
|
2718
2718
|
* that include the specified resource type.</p>
|
|
@@ -2720,13 +2720,13 @@ export interface ListPrincipalsRequest {
|
|
|
2720
2720
|
* operation.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
resourceType?: string;
|
|
2723
|
+
resourceType?: string | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>Specifies that you want to list information for only principals associated with the
|
|
2726
2726
|
* resource shares specified by a list the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
|
|
2727
2727
|
* @public
|
|
2728
2728
|
*/
|
|
2729
|
-
resourceShareArns?: string[];
|
|
2729
|
+
resourceShareArns?: string[] | undefined;
|
|
2730
2730
|
/**
|
|
2731
2731
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
2732
2732
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -2735,7 +2735,7 @@ export interface ListPrincipalsRequest {
|
|
|
2735
2735
|
* next page of results.</p>
|
|
2736
2736
|
* @public
|
|
2737
2737
|
*/
|
|
2738
|
-
nextToken?: string;
|
|
2738
|
+
nextToken?: string | undefined;
|
|
2739
2739
|
/**
|
|
2740
2740
|
* <p>Specifies the total number of results that you want included on each page
|
|
2741
2741
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2748,7 +2748,7 @@ export interface ListPrincipalsRequest {
|
|
|
2748
2748
|
* of the results.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
maxResults?: number;
|
|
2751
|
+
maxResults?: number | undefined;
|
|
2752
2752
|
}
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>Describes a principal for use with Resource Access Manager.</p>
|
|
@@ -2759,23 +2759,23 @@ export interface Principal {
|
|
|
2759
2759
|
* <p>The ID of the principal that can be associated with a resource share.</p>
|
|
2760
2760
|
* @public
|
|
2761
2761
|
*/
|
|
2762
|
-
id?: string;
|
|
2762
|
+
id?: string | undefined;
|
|
2763
2763
|
/**
|
|
2764
2764
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of a resource share the principal is associated with.</p>
|
|
2765
2765
|
* @public
|
|
2766
2766
|
*/
|
|
2767
|
-
resourceShareArn?: string;
|
|
2767
|
+
resourceShareArn?: string | undefined;
|
|
2768
2768
|
/**
|
|
2769
2769
|
* <p>The date and time when the principal was associated with the resource share.</p>
|
|
2770
2770
|
* @public
|
|
2771
2771
|
*/
|
|
2772
|
-
creationTime?: Date;
|
|
2772
|
+
creationTime?: Date | undefined;
|
|
2773
2773
|
/**
|
|
2774
2774
|
* <p>The date and time when the association between the resource share and the principal
|
|
2775
2775
|
* was last updated.</p>
|
|
2776
2776
|
* @public
|
|
2777
2777
|
*/
|
|
2778
|
-
lastUpdatedTime?: Date;
|
|
2778
|
+
lastUpdatedTime?: Date | undefined;
|
|
2779
2779
|
/**
|
|
2780
2780
|
* <p>Indicates the relationship between the Amazon Web Services account the principal belongs to and the
|
|
2781
2781
|
* account that owns the resource share:</p>
|
|
@@ -2793,7 +2793,7 @@ export interface Principal {
|
|
|
2793
2793
|
* </ul>
|
|
2794
2794
|
* @public
|
|
2795
2795
|
*/
|
|
2796
|
-
external?: boolean;
|
|
2796
|
+
external?: boolean | undefined;
|
|
2797
2797
|
}
|
|
2798
2798
|
/**
|
|
2799
2799
|
* @public
|
|
@@ -2803,7 +2803,7 @@ export interface ListPrincipalsResponse {
|
|
|
2803
2803
|
* <p>An array of objects that contain the details about the principals.</p>
|
|
2804
2804
|
* @public
|
|
2805
2805
|
*/
|
|
2806
|
-
principals?: Principal[];
|
|
2806
|
+
principals?: Principal[] | undefined;
|
|
2807
2807
|
/**
|
|
2808
2808
|
* <p>If present, this value indicates that more output is available than
|
|
2809
2809
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2812,7 +2812,7 @@ export interface ListPrincipalsResponse {
|
|
|
2812
2812
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2813
2813
|
* @public
|
|
2814
2814
|
*/
|
|
2815
|
-
nextToken?: string;
|
|
2815
|
+
nextToken?: string | undefined;
|
|
2816
2816
|
}
|
|
2817
2817
|
/**
|
|
2818
2818
|
* @public
|
|
@@ -2836,13 +2836,13 @@ export interface ListReplacePermissionAssociationsWorkRequest {
|
|
|
2836
2836
|
* <code>replacePermissionAssociationsWork</code>structure returned by the <a>ReplacePermissionAssociations</a> operation. </p>
|
|
2837
2837
|
* @public
|
|
2838
2838
|
*/
|
|
2839
|
-
workIds?: string[];
|
|
2839
|
+
workIds?: string[] | undefined;
|
|
2840
2840
|
/**
|
|
2841
2841
|
* <p>Specifies that you want to see only the details about requests with a status that
|
|
2842
2842
|
* matches this value.</p>
|
|
2843
2843
|
* @public
|
|
2844
2844
|
*/
|
|
2845
|
-
status?: ReplacePermissionAssociationsWorkStatus;
|
|
2845
|
+
status?: ReplacePermissionAssociationsWorkStatus | undefined;
|
|
2846
2846
|
/**
|
|
2847
2847
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
2848
2848
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -2851,7 +2851,7 @@ export interface ListReplacePermissionAssociationsWorkRequest {
|
|
|
2851
2851
|
* next page of results.</p>
|
|
2852
2852
|
* @public
|
|
2853
2853
|
*/
|
|
2854
|
-
nextToken?: string;
|
|
2854
|
+
nextToken?: string | undefined;
|
|
2855
2855
|
/**
|
|
2856
2856
|
* <p>Specifies the total number of results that you want included on each page
|
|
2857
2857
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -2864,7 +2864,7 @@ export interface ListReplacePermissionAssociationsWorkRequest {
|
|
|
2864
2864
|
* of the results.</p>
|
|
2865
2865
|
* @public
|
|
2866
2866
|
*/
|
|
2867
|
-
maxResults?: number;
|
|
2867
|
+
maxResults?: number | undefined;
|
|
2868
2868
|
}
|
|
2869
2869
|
/**
|
|
2870
2870
|
* <p>A structure that represents the background work that RAM performs when you invoke
|
|
@@ -2876,30 +2876,30 @@ export interface ReplacePermissionAssociationsWork {
|
|
|
2876
2876
|
* <p>The unique identifier for the background task associated with one <a>ReplacePermissionAssociations</a> request.</p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
id?: string;
|
|
2879
|
+
id?: string | undefined;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the managed permission that this background task is replacing.</p>
|
|
2882
2882
|
* @public
|
|
2883
2883
|
*/
|
|
2884
|
-
fromPermissionArn?: string;
|
|
2884
|
+
fromPermissionArn?: string | undefined;
|
|
2885
2885
|
/**
|
|
2886
2886
|
* <p>The version of the managed permission that this background task is replacing.</p>
|
|
2887
2887
|
* @public
|
|
2888
2888
|
*/
|
|
2889
|
-
fromPermissionVersion?: string;
|
|
2889
|
+
fromPermissionVersion?: string | undefined;
|
|
2890
2890
|
/**
|
|
2891
2891
|
* <p>The ARN of the managed permission that this background task is associating with the resource shares in place
|
|
2892
2892
|
* of the managed permission and version specified in <code>fromPermissionArn</code> and
|
|
2893
2893
|
* <code>fromPermissionVersion</code>.</p>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
toPermissionArn?: string;
|
|
2896
|
+
toPermissionArn?: string | undefined;
|
|
2897
2897
|
/**
|
|
2898
2898
|
* <p>The version of the managed permission that this background task is associating with the resource shares. This
|
|
2899
2899
|
* is always the version that is currently the default for this managed permission.</p>
|
|
2900
2900
|
* @public
|
|
2901
2901
|
*/
|
|
2902
|
-
toPermissionVersion?: string;
|
|
2902
|
+
toPermissionVersion?: string | undefined;
|
|
2903
2903
|
/**
|
|
2904
2904
|
* <p>Specifies the current status of the background tasks for the specified ID. The output
|
|
2905
2905
|
* is one of the following strings:</p>
|
|
@@ -2922,23 +2922,23 @@ export interface ReplacePermissionAssociationsWork {
|
|
|
2922
2922
|
* </ul>
|
|
2923
2923
|
* @public
|
|
2924
2924
|
*/
|
|
2925
|
-
status?: ReplacePermissionAssociationsWorkStatus;
|
|
2925
|
+
status?: ReplacePermissionAssociationsWorkStatus | undefined;
|
|
2926
2926
|
/**
|
|
2927
2927
|
* <p>Specifies the reason for a <code>FAILED</code> status. This field is present only when
|
|
2928
2928
|
* there <code>status</code> is <code>FAILED</code>.</p>
|
|
2929
2929
|
* @public
|
|
2930
2930
|
*/
|
|
2931
|
-
statusMessage?: string;
|
|
2931
|
+
statusMessage?: string | undefined;
|
|
2932
2932
|
/**
|
|
2933
2933
|
* <p>The date and time when this asynchronous background task was created.</p>
|
|
2934
2934
|
* @public
|
|
2935
2935
|
*/
|
|
2936
|
-
creationTime?: Date;
|
|
2936
|
+
creationTime?: Date | undefined;
|
|
2937
2937
|
/**
|
|
2938
2938
|
* <p>The date and time when the status of this background task was last updated.</p>
|
|
2939
2939
|
* @public
|
|
2940
2940
|
*/
|
|
2941
|
-
lastUpdatedTime?: Date;
|
|
2941
|
+
lastUpdatedTime?: Date | undefined;
|
|
2942
2942
|
}
|
|
2943
2943
|
/**
|
|
2944
2944
|
* @public
|
|
@@ -2948,7 +2948,7 @@ export interface ListReplacePermissionAssociationsWorkResponse {
|
|
|
2948
2948
|
* <p>An array of data structures that provide details of the matching work IDs.</p>
|
|
2949
2949
|
* @public
|
|
2950
2950
|
*/
|
|
2951
|
-
replacePermissionAssociationsWorks?: ReplacePermissionAssociationsWork[];
|
|
2951
|
+
replacePermissionAssociationsWorks?: ReplacePermissionAssociationsWork[] | undefined;
|
|
2952
2952
|
/**
|
|
2953
2953
|
* <p>If present, this value indicates that more output is available than
|
|
2954
2954
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -2957,7 +2957,7 @@ export interface ListReplacePermissionAssociationsWorkResponse {
|
|
|
2957
2957
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
2958
2958
|
* @public
|
|
2959
2959
|
*/
|
|
2960
|
-
nextToken?: string;
|
|
2960
|
+
nextToken?: string | undefined;
|
|
2961
2961
|
}
|
|
2962
2962
|
/**
|
|
2963
2963
|
* <p>The operation failed because the specified resource type isn't valid.</p>
|
|
@@ -3001,26 +3001,26 @@ export interface ListResourcesRequest {
|
|
|
3001
3001
|
* principal.</p>
|
|
3002
3002
|
* @public
|
|
3003
3003
|
*/
|
|
3004
|
-
principal?: string;
|
|
3004
|
+
principal?: string | undefined;
|
|
3005
3005
|
/**
|
|
3006
3006
|
* <p>Specifies that you want to list only the resource shares that include resources of the specified
|
|
3007
3007
|
* resource type.</p>
|
|
3008
3008
|
* <p>For valid values, query the <a>ListResourceTypes</a> operation.</p>
|
|
3009
3009
|
* @public
|
|
3010
3010
|
*/
|
|
3011
|
-
resourceType?: string;
|
|
3011
|
+
resourceType?: string | undefined;
|
|
3012
3012
|
/**
|
|
3013
3013
|
* <p>Specifies that you want to list only the resource shares that include resources with the
|
|
3014
3014
|
* specified <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
|
|
3015
3015
|
* @public
|
|
3016
3016
|
*/
|
|
3017
|
-
resourceArns?: string[];
|
|
3017
|
+
resourceArns?: string[] | undefined;
|
|
3018
3018
|
/**
|
|
3019
3019
|
* <p>Specifies that you want to list only resources in the resource shares identified by the
|
|
3020
3020
|
* specified <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
|
|
3021
3021
|
* @public
|
|
3022
3022
|
*/
|
|
3023
|
-
resourceShareArns?: string[];
|
|
3023
|
+
resourceShareArns?: string[] | undefined;
|
|
3024
3024
|
/**
|
|
3025
3025
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
3026
3026
|
* only if you received a <code>NextToken</code> response in the previous request. If you
|
|
@@ -3029,7 +3029,7 @@ export interface ListResourcesRequest {
|
|
|
3029
3029
|
* next page of results.</p>
|
|
3030
3030
|
* @public
|
|
3031
3031
|
*/
|
|
3032
|
-
nextToken?: string;
|
|
3032
|
+
nextToken?: string | undefined;
|
|
3033
3033
|
/**
|
|
3034
3034
|
* <p>Specifies the total number of results that you want included on each page
|
|
3035
3035
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -3042,7 +3042,7 @@ export interface ListResourcesRequest {
|
|
|
3042
3042
|
* of the results.</p>
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
maxResults?: number;
|
|
3045
|
+
maxResults?: number | undefined;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* <p>Specifies that you want the results to include only
|
|
3048
3048
|
* resources that have the specified scope.</p>
|
|
@@ -3066,7 +3066,7 @@ export interface ListResourcesRequest {
|
|
|
3066
3066
|
* <p>The default value is <code>ALL</code>.</p>
|
|
3067
3067
|
* @public
|
|
3068
3068
|
*/
|
|
3069
|
-
resourceRegionScope?: ResourceRegionScopeFilter;
|
|
3069
|
+
resourceRegionScope?: ResourceRegionScopeFilter | undefined;
|
|
3070
3070
|
}
|
|
3071
3071
|
/**
|
|
3072
3072
|
* @public
|
|
@@ -3076,7 +3076,7 @@ export interface ListResourcesResponse {
|
|
|
3076
3076
|
* <p>An array of objects that contain information about the resources.</p>
|
|
3077
3077
|
* @public
|
|
3078
3078
|
*/
|
|
3079
|
-
resources?: Resource[];
|
|
3079
|
+
resources?: Resource[] | undefined;
|
|
3080
3080
|
/**
|
|
3081
3081
|
* <p>If present, this value indicates that more output is available than
|
|
3082
3082
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -3085,7 +3085,7 @@ export interface ListResourcesResponse {
|
|
|
3085
3085
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
3086
3086
|
* @public
|
|
3087
3087
|
*/
|
|
3088
|
-
nextToken?: string;
|
|
3088
|
+
nextToken?: string | undefined;
|
|
3089
3089
|
}
|
|
3090
3090
|
/**
|
|
3091
3091
|
* @public
|
|
@@ -3105,7 +3105,7 @@ export interface ListResourceSharePermissionsRequest {
|
|
|
3105
3105
|
* next page of results.</p>
|
|
3106
3106
|
* @public
|
|
3107
3107
|
*/
|
|
3108
|
-
nextToken?: string;
|
|
3108
|
+
nextToken?: string | undefined;
|
|
3109
3109
|
/**
|
|
3110
3110
|
* <p>Specifies the total number of results that you want included on each page
|
|
3111
3111
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -3118,7 +3118,7 @@ export interface ListResourceSharePermissionsRequest {
|
|
|
3118
3118
|
* of the results.</p>
|
|
3119
3119
|
* @public
|
|
3120
3120
|
*/
|
|
3121
|
-
maxResults?: number;
|
|
3121
|
+
maxResults?: number | undefined;
|
|
3122
3122
|
}
|
|
3123
3123
|
/**
|
|
3124
3124
|
* @public
|
|
@@ -3128,7 +3128,7 @@ export interface ListResourceSharePermissionsResponse {
|
|
|
3128
3128
|
* <p>An array of objects that describe the permissions associated with the resource share.</p>
|
|
3129
3129
|
* @public
|
|
3130
3130
|
*/
|
|
3131
|
-
permissions?: ResourceSharePermissionSummary[];
|
|
3131
|
+
permissions?: ResourceSharePermissionSummary[] | undefined;
|
|
3132
3132
|
/**
|
|
3133
3133
|
* <p>If present, this value indicates that more output is available than
|
|
3134
3134
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -3137,7 +3137,7 @@ export interface ListResourceSharePermissionsResponse {
|
|
|
3137
3137
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
nextToken?: string;
|
|
3140
|
+
nextToken?: string | undefined;
|
|
3141
3141
|
}
|
|
3142
3142
|
/**
|
|
3143
3143
|
* @public
|
|
@@ -3151,7 +3151,7 @@ export interface ListResourceTypesRequest {
|
|
|
3151
3151
|
* next page of results.</p>
|
|
3152
3152
|
* @public
|
|
3153
3153
|
*/
|
|
3154
|
-
nextToken?: string;
|
|
3154
|
+
nextToken?: string | undefined;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>Specifies the total number of results that you want included on each page
|
|
3157
3157
|
* of the response. If you do not include this parameter, it defaults to a value that is
|
|
@@ -3164,7 +3164,7 @@ export interface ListResourceTypesRequest {
|
|
|
3164
3164
|
* of the results.</p>
|
|
3165
3165
|
* @public
|
|
3166
3166
|
*/
|
|
3167
|
-
maxResults?: number;
|
|
3167
|
+
maxResults?: number | undefined;
|
|
3168
3168
|
/**
|
|
3169
3169
|
* <p>Specifies that you want the results to include only
|
|
3170
3170
|
* resources that have the specified scope.</p>
|
|
@@ -3188,7 +3188,7 @@ export interface ListResourceTypesRequest {
|
|
|
3188
3188
|
* <p>The default value is <code>ALL</code>.</p>
|
|
3189
3189
|
* @public
|
|
3190
3190
|
*/
|
|
3191
|
-
resourceRegionScope?: ResourceRegionScopeFilter;
|
|
3191
|
+
resourceRegionScope?: ResourceRegionScopeFilter | undefined;
|
|
3192
3192
|
}
|
|
3193
3193
|
/**
|
|
3194
3194
|
* <p>Information about a shareable resource type and the Amazon Web Services service to which resources
|
|
@@ -3203,12 +3203,12 @@ export interface ServiceNameAndResourceType {
|
|
|
3203
3203
|
* <code>ec2:subnet</code>.</p>
|
|
3204
3204
|
* @public
|
|
3205
3205
|
*/
|
|
3206
|
-
resourceType?: string;
|
|
3206
|
+
resourceType?: string | undefined;
|
|
3207
3207
|
/**
|
|
3208
3208
|
* <p>The name of the Amazon Web Services service to which resources of this type belong.</p>
|
|
3209
3209
|
* @public
|
|
3210
3210
|
*/
|
|
3211
|
-
serviceName?: string;
|
|
3211
|
+
serviceName?: string | undefined;
|
|
3212
3212
|
/**
|
|
3213
3213
|
* <p>Specifies the scope of visibility of resources of this type:</p>
|
|
3214
3214
|
* <ul>
|
|
@@ -3226,7 +3226,7 @@ export interface ServiceNameAndResourceType {
|
|
|
3226
3226
|
* </ul>
|
|
3227
3227
|
* @public
|
|
3228
3228
|
*/
|
|
3229
|
-
resourceRegionScope?: ResourceRegionScope;
|
|
3229
|
+
resourceRegionScope?: ResourceRegionScope | undefined;
|
|
3230
3230
|
}
|
|
3231
3231
|
/**
|
|
3232
3232
|
* @public
|
|
@@ -3237,7 +3237,7 @@ export interface ListResourceTypesResponse {
|
|
|
3237
3237
|
* shared using RAM.</p>
|
|
3238
3238
|
* @public
|
|
3239
3239
|
*/
|
|
3240
|
-
resourceTypes?: ServiceNameAndResourceType[];
|
|
3240
|
+
resourceTypes?: ServiceNameAndResourceType[] | undefined;
|
|
3241
3241
|
/**
|
|
3242
3242
|
* <p>If present, this value indicates that more output is available than
|
|
3243
3243
|
* is included in the current response. Use this value in the <code>NextToken</code>
|
|
@@ -3246,7 +3246,7 @@ export interface ListResourceTypesResponse {
|
|
|
3246
3246
|
* back as <code>null</code>. This indicates that this is the last page of results.</p>
|
|
3247
3247
|
* @public
|
|
3248
3248
|
*/
|
|
3249
|
-
nextToken?: string;
|
|
3249
|
+
nextToken?: string | undefined;
|
|
3250
3250
|
}
|
|
3251
3251
|
/**
|
|
3252
3252
|
* @public
|
|
@@ -3277,7 +3277,7 @@ export interface PromotePermissionCreatedFromPolicyRequest {
|
|
|
3277
3277
|
* error.</p>
|
|
3278
3278
|
* @public
|
|
3279
3279
|
*/
|
|
3280
|
-
clientToken?: string;
|
|
3280
|
+
clientToken?: string | undefined;
|
|
3281
3281
|
}
|
|
3282
3282
|
/**
|
|
3283
3283
|
* @public
|
|
@@ -3287,7 +3287,7 @@ export interface PromotePermissionCreatedFromPolicyResponse {
|
|
|
3287
3287
|
* <p>Information about an RAM permission.</p>
|
|
3288
3288
|
* @public
|
|
3289
3289
|
*/
|
|
3290
|
-
permission?: ResourceSharePermissionSummary;
|
|
3290
|
+
permission?: ResourceSharePermissionSummary | undefined;
|
|
3291
3291
|
/**
|
|
3292
3292
|
* <p>The idempotency identifier associated with this request. If you
|
|
3293
3293
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -3295,7 +3295,7 @@ export interface PromotePermissionCreatedFromPolicyResponse {
|
|
|
3295
3295
|
* parameters must also have the same values that you used in the first call.</p>
|
|
3296
3296
|
* @public
|
|
3297
3297
|
*/
|
|
3298
|
-
clientToken?: string;
|
|
3298
|
+
clientToken?: string | undefined;
|
|
3299
3299
|
}
|
|
3300
3300
|
/**
|
|
3301
3301
|
* @public
|
|
@@ -3316,7 +3316,7 @@ export interface PromoteResourceShareCreatedFromPolicyResponse {
|
|
|
3316
3316
|
* A value of <code>false</code> indicates that the request failed.</p>
|
|
3317
3317
|
* @public
|
|
3318
3318
|
*/
|
|
3319
|
-
returnValue?: boolean;
|
|
3319
|
+
returnValue?: boolean | undefined;
|
|
3320
3320
|
}
|
|
3321
3321
|
/**
|
|
3322
3322
|
* <p>There isn't an existing managed permission defined in RAM that has the same IAM permissions as
|
|
@@ -3354,7 +3354,7 @@ export interface RejectResourceShareInvitationRequest {
|
|
|
3354
3354
|
* error.</p>
|
|
3355
3355
|
* @public
|
|
3356
3356
|
*/
|
|
3357
|
-
clientToken?: string;
|
|
3357
|
+
clientToken?: string | undefined;
|
|
3358
3358
|
}
|
|
3359
3359
|
/**
|
|
3360
3360
|
* @public
|
|
@@ -3364,7 +3364,7 @@ export interface RejectResourceShareInvitationResponse {
|
|
|
3364
3364
|
* <p>An object that contains the details about the rejected invitation.</p>
|
|
3365
3365
|
* @public
|
|
3366
3366
|
*/
|
|
3367
|
-
resourceShareInvitation?: ResourceShareInvitation;
|
|
3367
|
+
resourceShareInvitation?: ResourceShareInvitation | undefined;
|
|
3368
3368
|
/**
|
|
3369
3369
|
* <p>The idempotency identifier associated with this request. If you
|
|
3370
3370
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -3372,7 +3372,7 @@ export interface RejectResourceShareInvitationResponse {
|
|
|
3372
3372
|
* parameters must also have the same values that you used in the first call.</p>
|
|
3373
3373
|
* @public
|
|
3374
3374
|
*/
|
|
3375
|
-
clientToken?: string;
|
|
3375
|
+
clientToken?: string | undefined;
|
|
3376
3376
|
}
|
|
3377
3377
|
/**
|
|
3378
3378
|
* @public
|
|
@@ -3388,7 +3388,7 @@ export interface ReplacePermissionAssociationsRequest {
|
|
|
3388
3388
|
* specified version of the managed permission.</p>
|
|
3389
3389
|
* @public
|
|
3390
3390
|
*/
|
|
3391
|
-
fromPermissionVersion?: number;
|
|
3391
|
+
fromPermissionVersion?: number | undefined;
|
|
3392
3392
|
/**
|
|
3393
3393
|
* <p>Specifies the ARN of the managed permission that you want to associate with resource
|
|
3394
3394
|
* shares in place of the one specified by <code>fromPerssionArn</code> and
|
|
@@ -3412,7 +3412,7 @@ export interface ReplacePermissionAssociationsRequest {
|
|
|
3412
3412
|
* error.</p>
|
|
3413
3413
|
* @public
|
|
3414
3414
|
*/
|
|
3415
|
-
clientToken?: string;
|
|
3415
|
+
clientToken?: string | undefined;
|
|
3416
3416
|
}
|
|
3417
3417
|
/**
|
|
3418
3418
|
* @public
|
|
@@ -3424,7 +3424,7 @@ export interface ReplacePermissionAssociationsResponse {
|
|
|
3424
3424
|
* <code>id</code> value returned in this structure.</p>
|
|
3425
3425
|
* @public
|
|
3426
3426
|
*/
|
|
3427
|
-
replacePermissionAssociationsWork?: ReplacePermissionAssociationsWork;
|
|
3427
|
+
replacePermissionAssociationsWork?: ReplacePermissionAssociationsWork | undefined;
|
|
3428
3428
|
/**
|
|
3429
3429
|
* <p>The idempotency identifier associated with this request. If you
|
|
3430
3430
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -3432,7 +3432,7 @@ export interface ReplacePermissionAssociationsResponse {
|
|
|
3432
3432
|
* parameters must also have the same values that you used in the first call.</p>
|
|
3433
3433
|
* @public
|
|
3434
3434
|
*/
|
|
3435
|
-
clientToken?: string;
|
|
3435
|
+
clientToken?: string | undefined;
|
|
3436
3436
|
}
|
|
3437
3437
|
/**
|
|
3438
3438
|
* @public
|
|
@@ -3463,7 +3463,7 @@ export interface SetDefaultPermissionVersionRequest {
|
|
|
3463
3463
|
* error.</p>
|
|
3464
3464
|
* @public
|
|
3465
3465
|
*/
|
|
3466
|
-
clientToken?: string;
|
|
3466
|
+
clientToken?: string | undefined;
|
|
3467
3467
|
}
|
|
3468
3468
|
/**
|
|
3469
3469
|
* @public
|
|
@@ -3473,7 +3473,7 @@ export interface SetDefaultPermissionVersionResponse {
|
|
|
3473
3473
|
* <p>A boolean value that indicates whether the operation was successful.</p>
|
|
3474
3474
|
* @public
|
|
3475
3475
|
*/
|
|
3476
|
-
returnValue?: boolean;
|
|
3476
|
+
returnValue?: boolean | undefined;
|
|
3477
3477
|
/**
|
|
3478
3478
|
* <p>The idempotency identifier associated with this request. If you
|
|
3479
3479
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -3481,7 +3481,7 @@ export interface SetDefaultPermissionVersionResponse {
|
|
|
3481
3481
|
* parameters must also have the same values that you used in the first call.</p>
|
|
3482
3482
|
* @public
|
|
3483
3483
|
*/
|
|
3484
|
-
clientToken?: string;
|
|
3484
|
+
clientToken?: string | undefined;
|
|
3485
3485
|
}
|
|
3486
3486
|
/**
|
|
3487
3487
|
* @public
|
|
@@ -3493,7 +3493,7 @@ export interface TagResourceRequest {
|
|
|
3493
3493
|
* <code>resourceShareArn</code>, or <code>resourceArn</code>, but not both.</p>
|
|
3494
3494
|
* @public
|
|
3495
3495
|
*/
|
|
3496
|
-
resourceShareArn?: string;
|
|
3496
|
+
resourceShareArn?: string | undefined;
|
|
3497
3497
|
/**
|
|
3498
3498
|
* <p>A list of one or more tag key and value pairs. The tag key must be present and not be
|
|
3499
3499
|
* an empty string. The tag value must be present but can be an empty string.</p>
|
|
@@ -3506,7 +3506,7 @@ export interface TagResourceRequest {
|
|
|
3506
3506
|
* <code>resourceArn</code>, or <code>resourceShareArn</code>, but not both.</p>
|
|
3507
3507
|
* @public
|
|
3508
3508
|
*/
|
|
3509
|
-
resourceArn?: string;
|
|
3509
|
+
resourceArn?: string | undefined;
|
|
3510
3510
|
}
|
|
3511
3511
|
/**
|
|
3512
3512
|
* @public
|
|
@@ -3523,7 +3523,7 @@ export interface UntagResourceRequest {
|
|
|
3523
3523
|
* <code>resourceShareArn</code>, or <code>resourceArn</code>, but not both.</p>
|
|
3524
3524
|
* @public
|
|
3525
3525
|
*/
|
|
3526
|
-
resourceShareArn?: string;
|
|
3526
|
+
resourceShareArn?: string | undefined;
|
|
3527
3527
|
/**
|
|
3528
3528
|
* <p>Specifies a list of one or more tag keys that you want to remove.</p>
|
|
3529
3529
|
* @public
|
|
@@ -3535,7 +3535,7 @@ export interface UntagResourceRequest {
|
|
|
3535
3535
|
* both.</p>
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
resourceArn?: string;
|
|
3538
|
+
resourceArn?: string | undefined;
|
|
3539
3539
|
}
|
|
3540
3540
|
/**
|
|
3541
3541
|
* @public
|
|
@@ -3555,13 +3555,13 @@ export interface UpdateResourceShareRequest {
|
|
|
3555
3555
|
* <p>If specified, the new name that you want to attach to the resource share.</p>
|
|
3556
3556
|
* @public
|
|
3557
3557
|
*/
|
|
3558
|
-
name?: string;
|
|
3558
|
+
name?: string | undefined;
|
|
3559
3559
|
/**
|
|
3560
3560
|
* <p>Specifies whether principals outside your organization in Organizations can be associated
|
|
3561
3561
|
* with a resource share.</p>
|
|
3562
3562
|
* @public
|
|
3563
3563
|
*/
|
|
3564
|
-
allowExternalPrincipals?: boolean;
|
|
3564
|
+
allowExternalPrincipals?: boolean | undefined;
|
|
3565
3565
|
/**
|
|
3566
3566
|
* <p>Specifies a unique, case-sensitive identifier that you provide to
|
|
3567
3567
|
* ensure the idempotency of the request. This lets you safely retry the request without
|
|
@@ -3576,7 +3576,7 @@ export interface UpdateResourceShareRequest {
|
|
|
3576
3576
|
* error.</p>
|
|
3577
3577
|
* @public
|
|
3578
3578
|
*/
|
|
3579
|
-
clientToken?: string;
|
|
3579
|
+
clientToken?: string | undefined;
|
|
3580
3580
|
}
|
|
3581
3581
|
/**
|
|
3582
3582
|
* @public
|
|
@@ -3586,7 +3586,7 @@ export interface UpdateResourceShareResponse {
|
|
|
3586
3586
|
* <p>Information about the resource share.</p>
|
|
3587
3587
|
* @public
|
|
3588
3588
|
*/
|
|
3589
|
-
resourceShare?: ResourceShare;
|
|
3589
|
+
resourceShare?: ResourceShare | undefined;
|
|
3590
3590
|
/**
|
|
3591
3591
|
* <p>The idempotency identifier associated with this request. If you
|
|
3592
3592
|
* want to repeat the same operation in an idempotent manner then you must include this
|
|
@@ -3594,5 +3594,5 @@ export interface UpdateResourceShareResponse {
|
|
|
3594
3594
|
* parameters must also have the same values that you used in the first call.</p>
|
|
3595
3595
|
* @public
|
|
3596
3596
|
*/
|
|
3597
|
-
clientToken?: string;
|
|
3597
|
+
clientToken?: string | undefined;
|
|
3598
3598
|
}
|