@aws-sdk/client-clouddirectory 3.428.0 → 3.429.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.
@@ -742,7 +742,7 @@ export interface TypedAttributeValueRange {
742
742
  * @public
743
743
  * <p>The inclusive or exclusive range start.</p>
744
744
  */
745
- StartMode: RangeMode | string | undefined;
745
+ StartMode: RangeMode | undefined;
746
746
  /**
747
747
  * @public
748
748
  * <p>The value to start the range at.</p>
@@ -752,7 +752,7 @@ export interface TypedAttributeValueRange {
752
752
  * @public
753
753
  * <p>The inclusive or exclusive range end.</p>
754
754
  */
755
- EndMode: RangeMode | string | undefined;
755
+ EndMode: RangeMode | undefined;
756
756
  /**
757
757
  * @public
758
758
  * <p>The attribute value to terminate the range at.</p>
@@ -1150,7 +1150,7 @@ export interface BatchReadRequest {
1150
1150
  * <p>Represents the manner and timing in which the successful write or update of an object
1151
1151
  * is reflected in a subsequent read operation of that same object.</p>
1152
1152
  */
1153
- ConsistencyLevel?: ConsistencyLevel | string;
1153
+ ConsistencyLevel?: ConsistencyLevel;
1154
1154
  }
1155
1155
  /**
1156
1156
  * @public
@@ -1185,7 +1185,7 @@ export interface BatchReadException {
1185
1185
  * @public
1186
1186
  * <p>A type of exception, such as <code>InvalidArnException</code>.</p>
1187
1187
  */
1188
- Type?: BatchReadExceptionType | string;
1188
+ Type?: BatchReadExceptionType;
1189
1189
  /**
1190
1190
  * @public
1191
1191
  * <p>An exception message that is associated with the failure.</p>
@@ -1653,7 +1653,7 @@ export declare class BatchWriteException extends __BaseException {
1653
1653
  readonly name: "BatchWriteException";
1654
1654
  readonly $fault: "client";
1655
1655
  Index?: number;
1656
- Type?: BatchWriteExceptionType | string;
1656
+ Type?: BatchWriteExceptionType;
1657
1657
  Message?: string;
1658
1658
  /**
1659
1659
  * @internal
@@ -1940,7 +1940,7 @@ export interface LinkAttributeAction {
1940
1940
  * @public
1941
1941
  * <p>A type that can be either <code>UPDATE_OR_CREATE</code> or <code>DELETE</code>.</p>
1942
1942
  */
1943
- AttributeActionType?: UpdateActionType | string;
1943
+ AttributeActionType?: UpdateActionType;
1944
1944
  /**
1945
1945
  * @public
1946
1946
  * <p>The value that you want to update to.</p>
@@ -1988,7 +1988,7 @@ export interface ObjectAttributeAction {
1988
1988
  * @public
1989
1989
  * <p>A type that can be either <code>Update</code> or <code>Delete</code>.</p>
1990
1990
  */
1991
- ObjectAttributeActionType?: UpdateActionType | string;
1991
+ ObjectAttributeActionType?: UpdateActionType;
1992
1992
  /**
1993
1993
  * @public
1994
1994
  * <p>The value that you want to update to.</p>
@@ -2431,7 +2431,7 @@ export interface Rule {
2431
2431
  * @public
2432
2432
  * <p>The type of attribute validation rule.</p>
2433
2433
  */
2434
- Type?: RuleType | string;
2434
+ Type?: RuleType;
2435
2435
  /**
2436
2436
  * @public
2437
2437
  * <p>The minimum and maximum parameters that are associated with the rule.</p>
@@ -2463,7 +2463,7 @@ export interface FacetAttributeDefinition {
2463
2463
  * @public
2464
2464
  * <p>The type of the attribute.</p>
2465
2465
  */
2466
- Type: FacetAttributeType | string | undefined;
2466
+ Type: FacetAttributeType | undefined;
2467
2467
  /**
2468
2468
  * @public
2469
2469
  * <p>The default value of the attribute (if configured).</p>
@@ -2534,7 +2534,7 @@ export interface FacetAttribute {
2534
2534
  * @public
2535
2535
  * <p>The required behavior of the <code>FacetAttribute</code>.</p>
2536
2536
  */
2537
- RequiredBehavior?: RequiredAttributeBehavior | string;
2537
+ RequiredBehavior?: RequiredAttributeBehavior;
2538
2538
  }
2539
2539
  /**
2540
2540
  * @public
@@ -2608,12 +2608,12 @@ export interface CreateFacetRequest {
2608
2608
  * </li>
2609
2609
  * </ul>
2610
2610
  */
2611
- ObjectType?: ObjectType | string;
2611
+ ObjectType?: ObjectType;
2612
2612
  /**
2613
2613
  * @public
2614
2614
  * <p>There are two different styles that you can define on any given facet, <code>Static</code> and <code>Dynamic</code>. For static facets, all attributes must be defined in the schema. For dynamic facets, attributes can be defined during data plane operations.</p>
2615
2615
  */
2616
- FacetStyle?: FacetStyle | string;
2616
+ FacetStyle?: FacetStyle;
2617
2617
  }
2618
2618
  /**
2619
2619
  * @public
@@ -2779,7 +2779,7 @@ export interface TypedLinkAttributeDefinition {
2779
2779
  * @public
2780
2780
  * <p>The type of the attribute.</p>
2781
2781
  */
2782
- Type: FacetAttributeType | string | undefined;
2782
+ Type: FacetAttributeType | undefined;
2783
2783
  /**
2784
2784
  * @public
2785
2785
  * <p>The default value of the attribute (if configured).</p>
@@ -2799,7 +2799,7 @@ export interface TypedLinkAttributeDefinition {
2799
2799
  * @public
2800
2800
  * <p>The required behavior of the <code>TypedLinkAttributeDefinition</code>.</p>
2801
2801
  */
2802
- RequiredBehavior: RequiredAttributeBehavior | string | undefined;
2802
+ RequiredBehavior: RequiredAttributeBehavior | undefined;
2803
2803
  }
2804
2804
  /**
2805
2805
  * @public
@@ -3268,7 +3268,7 @@ export interface Directory {
3268
3268
  * @public
3269
3269
  * <p>The state of the directory. Can be either <code>Enabled</code>, <code>Disabled</code>, or <code>Deleted</code>.</p>
3270
3270
  */
3271
- State?: DirectoryState | string;
3271
+ State?: DirectoryState;
3272
3272
  /**
3273
3273
  * @public
3274
3274
  * <p>The date and time when the directory was created.</p>
@@ -3317,12 +3317,12 @@ export interface Facet {
3317
3317
  * @public
3318
3318
  * <p>The object type that is associated with the facet. See <a>CreateFacetRequest$ObjectType</a> for more details.</p>
3319
3319
  */
3320
- ObjectType?: ObjectType | string;
3320
+ ObjectType?: ObjectType;
3321
3321
  /**
3322
3322
  * @public
3323
3323
  * <p>There are two different styles that you can define on any given facet, <code>Static</code> and <code>Dynamic</code>. For static facets, all attributes must be defined in the schema. For dynamic facets, attributes can be defined during data plane operations.</p>
3324
3324
  */
3325
- FacetStyle?: FacetStyle | string;
3325
+ FacetStyle?: FacetStyle;
3326
3326
  }
3327
3327
  /**
3328
3328
  * @public
@@ -3357,7 +3357,7 @@ export interface GetLinkAttributesRequest {
3357
3357
  * @public
3358
3358
  * <p>The consistency level at which to retrieve the attributes on a typed link.</p>
3359
3359
  */
3360
- ConsistencyLevel?: ConsistencyLevel | string;
3360
+ ConsistencyLevel?: ConsistencyLevel;
3361
3361
  }
3362
3362
  /**
3363
3363
  * @public
@@ -3387,7 +3387,7 @@ export interface GetObjectAttributesRequest {
3387
3387
  * @public
3388
3388
  * <p>The consistency level at which to retrieve the attributes on an object.</p>
3389
3389
  */
3390
- ConsistencyLevel?: ConsistencyLevel | string;
3390
+ ConsistencyLevel?: ConsistencyLevel;
3391
3391
  /**
3392
3392
  * @public
3393
3393
  * <p>Identifier for the facet whose attributes will be retrieved. See <a>SchemaFacet</a> for details.</p>
@@ -3427,7 +3427,7 @@ export interface GetObjectInformationRequest {
3427
3427
  * @public
3428
3428
  * <p>The consistency level at which to retrieve the object information.</p>
3429
3429
  */
3430
- ConsistencyLevel?: ConsistencyLevel | string;
3430
+ ConsistencyLevel?: ConsistencyLevel;
3431
3431
  }
3432
3432
  /**
3433
3433
  * @public
@@ -3581,7 +3581,7 @@ export interface ListAttachedIndicesRequest {
3581
3581
  * @public
3582
3582
  * <p>The consistency level to use for this operation.</p>
3583
3583
  */
3584
- ConsistencyLevel?: ConsistencyLevel | string;
3584
+ ConsistencyLevel?: ConsistencyLevel;
3585
3585
  }
3586
3586
  /**
3587
3587
  * @public
@@ -3647,7 +3647,7 @@ export interface ListDirectoriesRequest {
3647
3647
  * <p>The state of the directories in the list. Can be either Enabled, Disabled, or
3648
3648
  * Deleted.</p>
3649
3649
  */
3650
- state?: DirectoryState | string;
3650
+ state?: DirectoryState;
3651
3651
  }
3652
3652
  /**
3653
3653
  * @public
@@ -3782,7 +3782,7 @@ export interface ListIncomingTypedLinksRequest {
3782
3782
  * @public
3783
3783
  * <p>The consistency level to execute the request at.</p>
3784
3784
  */
3785
- ConsistencyLevel?: ConsistencyLevel | string;
3785
+ ConsistencyLevel?: ConsistencyLevel;
3786
3786
  }
3787
3787
  /**
3788
3788
  * @public
@@ -3832,7 +3832,7 @@ export interface ListIndexRequest {
3832
3832
  * @public
3833
3833
  * <p>The consistency level to execute the request at.</p>
3834
3834
  */
3835
- ConsistencyLevel?: ConsistencyLevel | string;
3835
+ ConsistencyLevel?: ConsistencyLevel;
3836
3836
  }
3837
3837
  /**
3838
3838
  * @public
@@ -3915,7 +3915,7 @@ export interface ListObjectAttributesRequest {
3915
3915
  * <p>Represents the manner and timing in which the successful write or update of an object
3916
3916
  * is reflected in a subsequent read operation of that same object.</p>
3917
3917
  */
3918
- ConsistencyLevel?: ConsistencyLevel | string;
3918
+ ConsistencyLevel?: ConsistencyLevel;
3919
3919
  /**
3920
3920
  * @public
3921
3921
  * <p>Used to filter the list of object attributes that are associated with a certain
@@ -3971,7 +3971,7 @@ export interface ListObjectChildrenRequest {
3971
3971
  * <p>Represents the manner and timing in which the successful write or update of an object
3972
3972
  * is reflected in a subsequent read operation of that same object.</p>
3973
3973
  */
3974
- ConsistencyLevel?: ConsistencyLevel | string;
3974
+ ConsistencyLevel?: ConsistencyLevel;
3975
3975
  }
3976
3976
  /**
3977
3977
  * @public
@@ -4076,7 +4076,7 @@ export interface ListObjectParentsRequest {
4076
4076
  * <p>Represents the manner and timing in which the successful write or update of an object
4077
4077
  * is reflected in a subsequent read operation of that same object.</p>
4078
4078
  */
4079
- ConsistencyLevel?: ConsistencyLevel | string;
4079
+ ConsistencyLevel?: ConsistencyLevel;
4080
4080
  /**
4081
4081
  * @public
4082
4082
  * <p>When set to True, returns all <a>ListObjectParentsResponse$ParentLinks</a>. There could be multiple links between a parent-child pair.</p>
@@ -4135,7 +4135,7 @@ export interface ListObjectPoliciesRequest {
4135
4135
  * <p>Represents the manner and timing in which the successful write or update of an object
4136
4136
  * is reflected in a subsequent read operation of that same object.</p>
4137
4137
  */
4138
- ConsistencyLevel?: ConsistencyLevel | string;
4138
+ ConsistencyLevel?: ConsistencyLevel;
4139
4139
  }
4140
4140
  /**
4141
4141
  * @public
@@ -4195,7 +4195,7 @@ export interface ListOutgoingTypedLinksRequest {
4195
4195
  * @public
4196
4196
  * <p>The consistency level to execute the request at.</p>
4197
4197
  */
4198
- ConsistencyLevel?: ConsistencyLevel | string;
4198
+ ConsistencyLevel?: ConsistencyLevel;
4199
4199
  }
4200
4200
  /**
4201
4201
  * @public
@@ -4243,7 +4243,7 @@ export interface ListPolicyAttachmentsRequest {
4243
4243
  * <p>Represents the manner and timing in which the successful write or update of an object
4244
4244
  * is reflected in a subsequent read operation of that same object.</p>
4245
4245
  */
4246
- ConsistencyLevel?: ConsistencyLevel | string;
4246
+ ConsistencyLevel?: ConsistencyLevel;
4247
4247
  }
4248
4248
  /**
4249
4249
  * @public
@@ -4666,7 +4666,7 @@ export interface FacetAttributeUpdate {
4666
4666
  * @public
4667
4667
  * <p>The action to perform when updating the attribute.</p>
4668
4668
  */
4669
- Action?: UpdateActionType | string;
4669
+ Action?: UpdateActionType;
4670
4670
  }
4671
4671
  /**
4672
4672
  * @public
@@ -4694,7 +4694,7 @@ export interface UpdateFacetRequest {
4694
4694
  * @public
4695
4695
  * <p>The object type that is associated with the facet. See <a>CreateFacetRequest$ObjectType</a> for more details.</p>
4696
4696
  */
4697
- ObjectType?: ObjectType | string;
4697
+ ObjectType?: ObjectType;
4698
4698
  }
4699
4699
  /**
4700
4700
  * @public
@@ -4797,7 +4797,7 @@ export interface TypedLinkFacetAttributeUpdate {
4797
4797
  * @public
4798
4798
  * <p>The action to perform when updating the attribute.</p>
4799
4799
  */
4800
- Action: UpdateActionType | string | undefined;
4800
+ Action: UpdateActionType | undefined;
4801
4801
  }
4802
4802
  /**
4803
4803
  * @public
@@ -295,9 +295,9 @@ export declare const RangeMode: {
295
295
  };
296
296
  export type RangeMode = (typeof RangeMode)[keyof typeof RangeMode];
297
297
  export interface TypedAttributeValueRange {
298
- StartMode: RangeMode | string | undefined;
298
+ StartMode: RangeMode | undefined;
299
299
  StartValue?: TypedAttributeValue;
300
- EndMode: RangeMode | string | undefined;
300
+ EndMode: RangeMode | undefined;
301
301
  EndValue?: TypedAttributeValue;
302
302
  }
303
303
  export interface TypedLinkAttributeRange {
@@ -383,7 +383,7 @@ export interface BatchReadOperation {
383
383
  export interface BatchReadRequest {
384
384
  DirectoryArn: string | undefined;
385
385
  Operations: BatchReadOperation[] | undefined;
386
- ConsistencyLevel?: ConsistencyLevel | string;
386
+ ConsistencyLevel?: ConsistencyLevel;
387
387
  }
388
388
  export declare const BatchReadExceptionType: {
389
389
  readonly AccessDeniedException: "AccessDeniedException";
@@ -403,7 +403,7 @@ export declare const BatchReadExceptionType: {
403
403
  export type BatchReadExceptionType =
404
404
  (typeof BatchReadExceptionType)[keyof typeof BatchReadExceptionType];
405
405
  export interface BatchReadException {
406
- Type?: BatchReadExceptionType | string;
406
+ Type?: BatchReadExceptionType;
407
407
  Message?: string;
408
408
  }
409
409
  export interface BatchGetLinkAttributesResponse {
@@ -530,7 +530,7 @@ export declare class BatchWriteException extends __BaseException {
530
530
  readonly name: "BatchWriteException";
531
531
  readonly $fault: "client";
532
532
  Index?: number;
533
- Type?: BatchWriteExceptionType | string;
533
+ Type?: BatchWriteExceptionType;
534
534
  Message?: string;
535
535
  constructor(
536
536
  opts: __ExceptionOptionType<BatchWriteException, __BaseException>
@@ -604,7 +604,7 @@ export declare const UpdateActionType: {
604
604
  export type UpdateActionType =
605
605
  (typeof UpdateActionType)[keyof typeof UpdateActionType];
606
606
  export interface LinkAttributeAction {
607
- AttributeActionType?: UpdateActionType | string;
607
+ AttributeActionType?: UpdateActionType;
608
608
  AttributeUpdateValue?: TypedAttributeValue;
609
609
  }
610
610
  export interface LinkAttributeUpdate {
@@ -616,7 +616,7 @@ export interface BatchUpdateLinkAttributes {
616
616
  AttributeUpdates: LinkAttributeUpdate[] | undefined;
617
617
  }
618
618
  export interface ObjectAttributeAction {
619
- ObjectAttributeActionType?: UpdateActionType | string;
619
+ ObjectAttributeActionType?: UpdateActionType;
620
620
  ObjectAttributeUpdateValue?: TypedAttributeValue;
621
621
  }
622
622
  export interface ObjectAttributeUpdate {
@@ -728,7 +728,7 @@ export declare const RuleType: {
728
728
  };
729
729
  export type RuleType = (typeof RuleType)[keyof typeof RuleType];
730
730
  export interface Rule {
731
- Type?: RuleType | string;
731
+ Type?: RuleType;
732
732
  Parameters?: Record<string, string>;
733
733
  }
734
734
  export declare const FacetAttributeType: {
@@ -742,7 +742,7 @@ export declare const FacetAttributeType: {
742
742
  export type FacetAttributeType =
743
743
  (typeof FacetAttributeType)[keyof typeof FacetAttributeType];
744
744
  export interface FacetAttributeDefinition {
745
- Type: FacetAttributeType | string | undefined;
745
+ Type: FacetAttributeType | undefined;
746
746
  DefaultValue?: TypedAttributeValue;
747
747
  IsImmutable?: boolean;
748
748
  Rules?: Record<string, Rule>;
@@ -761,7 +761,7 @@ export interface FacetAttribute {
761
761
  Name: string | undefined;
762
762
  AttributeDefinition?: FacetAttributeDefinition;
763
763
  AttributeReference?: FacetAttributeReference;
764
- RequiredBehavior?: RequiredAttributeBehavior | string;
764
+ RequiredBehavior?: RequiredAttributeBehavior;
765
765
  }
766
766
  export declare const FacetStyle: {
767
767
  readonly DYNAMIC: "DYNAMIC";
@@ -779,8 +779,8 @@ export interface CreateFacetRequest {
779
779
  SchemaArn: string | undefined;
780
780
  Name: string | undefined;
781
781
  Attributes?: FacetAttribute[];
782
- ObjectType?: ObjectType | string;
783
- FacetStyle?: FacetStyle | string;
782
+ ObjectType?: ObjectType;
783
+ FacetStyle?: FacetStyle;
784
784
  }
785
785
  export interface CreateFacetResponse {}
786
786
  export declare class FacetAlreadyExistsException extends __BaseException {
@@ -835,11 +835,11 @@ export interface CreateSchemaResponse {
835
835
  }
836
836
  export interface TypedLinkAttributeDefinition {
837
837
  Name: string | undefined;
838
- Type: FacetAttributeType | string | undefined;
838
+ Type: FacetAttributeType | undefined;
839
839
  DefaultValue?: TypedAttributeValue;
840
840
  IsImmutable?: boolean;
841
841
  Rules?: Record<string, Rule>;
842
- RequiredBehavior: RequiredAttributeBehavior | string | undefined;
842
+ RequiredBehavior: RequiredAttributeBehavior | undefined;
843
843
  }
844
844
  export interface TypedLinkFacet {
845
845
  Name: string | undefined;
@@ -997,7 +997,7 @@ export type DirectoryState =
997
997
  export interface Directory {
998
998
  Name?: string;
999
999
  DirectoryArn?: string;
1000
- State?: DirectoryState | string;
1000
+ State?: DirectoryState;
1001
1001
  CreationDateTime?: Date;
1002
1002
  }
1003
1003
  export interface GetDirectoryResponse {
@@ -1009,8 +1009,8 @@ export interface GetFacetRequest {
1009
1009
  }
1010
1010
  export interface Facet {
1011
1011
  Name?: string;
1012
- ObjectType?: ObjectType | string;
1013
- FacetStyle?: FacetStyle | string;
1012
+ ObjectType?: ObjectType;
1013
+ FacetStyle?: FacetStyle;
1014
1014
  }
1015
1015
  export interface GetFacetResponse {
1016
1016
  Facet?: Facet;
@@ -1019,7 +1019,7 @@ export interface GetLinkAttributesRequest {
1019
1019
  DirectoryArn: string | undefined;
1020
1020
  TypedLinkSpecifier: TypedLinkSpecifier | undefined;
1021
1021
  AttributeNames: string[] | undefined;
1022
- ConsistencyLevel?: ConsistencyLevel | string;
1022
+ ConsistencyLevel?: ConsistencyLevel;
1023
1023
  }
1024
1024
  export interface GetLinkAttributesResponse {
1025
1025
  Attributes?: AttributeKeyAndValue[];
@@ -1027,7 +1027,7 @@ export interface GetLinkAttributesResponse {
1027
1027
  export interface GetObjectAttributesRequest {
1028
1028
  DirectoryArn: string | undefined;
1029
1029
  ObjectReference: ObjectReference | undefined;
1030
- ConsistencyLevel?: ConsistencyLevel | string;
1030
+ ConsistencyLevel?: ConsistencyLevel;
1031
1031
  SchemaFacet: SchemaFacet | undefined;
1032
1032
  AttributeNames: string[] | undefined;
1033
1033
  }
@@ -1037,7 +1037,7 @@ export interface GetObjectAttributesResponse {
1037
1037
  export interface GetObjectInformationRequest {
1038
1038
  DirectoryArn: string | undefined;
1039
1039
  ObjectReference: ObjectReference | undefined;
1040
- ConsistencyLevel?: ConsistencyLevel | string;
1040
+ ConsistencyLevel?: ConsistencyLevel;
1041
1041
  }
1042
1042
  export interface GetObjectInformationResponse {
1043
1043
  SchemaFacets?: SchemaFacet[];
@@ -1080,7 +1080,7 @@ export interface ListAttachedIndicesRequest {
1080
1080
  TargetReference: ObjectReference | undefined;
1081
1081
  NextToken?: string;
1082
1082
  MaxResults?: number;
1083
- ConsistencyLevel?: ConsistencyLevel | string;
1083
+ ConsistencyLevel?: ConsistencyLevel;
1084
1084
  }
1085
1085
  export interface ListAttachedIndicesResponse {
1086
1086
  IndexAttachments?: IndexAttachment[];
@@ -1097,7 +1097,7 @@ export interface ListDevelopmentSchemaArnsResponse {
1097
1097
  export interface ListDirectoriesRequest {
1098
1098
  NextToken?: string;
1099
1099
  MaxResults?: number;
1100
- state?: DirectoryState | string;
1100
+ state?: DirectoryState;
1101
1101
  }
1102
1102
  export interface ListDirectoriesResponse {
1103
1103
  Directories: Directory[] | undefined;
@@ -1129,7 +1129,7 @@ export interface ListIncomingTypedLinksRequest {
1129
1129
  FilterTypedLink?: TypedLinkSchemaAndFacetName;
1130
1130
  NextToken?: string;
1131
1131
  MaxResults?: number;
1132
- ConsistencyLevel?: ConsistencyLevel | string;
1132
+ ConsistencyLevel?: ConsistencyLevel;
1133
1133
  }
1134
1134
  export interface ListIncomingTypedLinksResponse {
1135
1135
  LinkSpecifiers?: TypedLinkSpecifier[];
@@ -1141,7 +1141,7 @@ export interface ListIndexRequest {
1141
1141
  IndexReference: ObjectReference | undefined;
1142
1142
  MaxResults?: number;
1143
1143
  NextToken?: string;
1144
- ConsistencyLevel?: ConsistencyLevel | string;
1144
+ ConsistencyLevel?: ConsistencyLevel;
1145
1145
  }
1146
1146
  export interface ListIndexResponse {
1147
1147
  IndexAttachments?: IndexAttachment[];
@@ -1161,7 +1161,7 @@ export interface ListObjectAttributesRequest {
1161
1161
  ObjectReference: ObjectReference | undefined;
1162
1162
  NextToken?: string;
1163
1163
  MaxResults?: number;
1164
- ConsistencyLevel?: ConsistencyLevel | string;
1164
+ ConsistencyLevel?: ConsistencyLevel;
1165
1165
  FacetFilter?: SchemaFacet;
1166
1166
  }
1167
1167
  export interface ListObjectAttributesResponse {
@@ -1173,7 +1173,7 @@ export interface ListObjectChildrenRequest {
1173
1173
  ObjectReference: ObjectReference | undefined;
1174
1174
  NextToken?: string;
1175
1175
  MaxResults?: number;
1176
- ConsistencyLevel?: ConsistencyLevel | string;
1176
+ ConsistencyLevel?: ConsistencyLevel;
1177
1177
  }
1178
1178
  export interface ListObjectChildrenResponse {
1179
1179
  Children?: Record<string, string>;
@@ -1205,7 +1205,7 @@ export interface ListObjectParentsRequest {
1205
1205
  ObjectReference: ObjectReference | undefined;
1206
1206
  NextToken?: string;
1207
1207
  MaxResults?: number;
1208
- ConsistencyLevel?: ConsistencyLevel | string;
1208
+ ConsistencyLevel?: ConsistencyLevel;
1209
1209
  IncludeAllLinksToEachParent?: boolean;
1210
1210
  }
1211
1211
  export interface ListObjectParentsResponse {
@@ -1218,7 +1218,7 @@ export interface ListObjectPoliciesRequest {
1218
1218
  ObjectReference: ObjectReference | undefined;
1219
1219
  NextToken?: string;
1220
1220
  MaxResults?: number;
1221
- ConsistencyLevel?: ConsistencyLevel | string;
1221
+ ConsistencyLevel?: ConsistencyLevel;
1222
1222
  }
1223
1223
  export interface ListObjectPoliciesResponse {
1224
1224
  AttachedPolicyIds?: string[];
@@ -1231,7 +1231,7 @@ export interface ListOutgoingTypedLinksRequest {
1231
1231
  FilterTypedLink?: TypedLinkSchemaAndFacetName;
1232
1232
  NextToken?: string;
1233
1233
  MaxResults?: number;
1234
- ConsistencyLevel?: ConsistencyLevel | string;
1234
+ ConsistencyLevel?: ConsistencyLevel;
1235
1235
  }
1236
1236
  export interface ListOutgoingTypedLinksResponse {
1237
1237
  TypedLinkSpecifiers?: TypedLinkSpecifier[];
@@ -1242,7 +1242,7 @@ export interface ListPolicyAttachmentsRequest {
1242
1242
  PolicyReference: ObjectReference | undefined;
1243
1243
  NextToken?: string;
1244
1244
  MaxResults?: number;
1245
- ConsistencyLevel?: ConsistencyLevel | string;
1245
+ ConsistencyLevel?: ConsistencyLevel;
1246
1246
  }
1247
1247
  export interface ListPolicyAttachmentsResponse {
1248
1248
  ObjectIdentifiers?: string[];
@@ -1368,13 +1368,13 @@ export declare class InvalidFacetUpdateException extends __BaseException {
1368
1368
  }
1369
1369
  export interface FacetAttributeUpdate {
1370
1370
  Attribute?: FacetAttribute;
1371
- Action?: UpdateActionType | string;
1371
+ Action?: UpdateActionType;
1372
1372
  }
1373
1373
  export interface UpdateFacetRequest {
1374
1374
  SchemaArn: string | undefined;
1375
1375
  Name: string | undefined;
1376
1376
  AttributeUpdates?: FacetAttributeUpdate[];
1377
- ObjectType?: ObjectType | string;
1377
+ ObjectType?: ObjectType;
1378
1378
  }
1379
1379
  export interface UpdateFacetResponse {}
1380
1380
  export interface UpdateLinkAttributesRequest {
@@ -1400,7 +1400,7 @@ export interface UpdateSchemaResponse {
1400
1400
  }
1401
1401
  export interface TypedLinkFacetAttributeUpdate {
1402
1402
  Attribute: TypedLinkAttributeDefinition | undefined;
1403
- Action: UpdateActionType | string | undefined;
1403
+ Action: UpdateActionType | undefined;
1404
1404
  }
1405
1405
  export interface UpdateTypedLinkFacetRequest {
1406
1406
  SchemaArn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-clouddirectory",
3
3
  "description": "AWS SDK for JavaScript Clouddirectory Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",