@@ -347,8 +347,8 @@ list ConstructorPartList {
347
347
//= specification/searchable-encryption/virtual.md#virtual-field-initialization
348
348
//= type=implication
349
349
//# On initialization of a Virtual Field, the caller MUST provide:
350
- //# * A name -- a string
351
- //# * A list of [Virtual Parts](#virtual-part-initialization)
350
+ //# - A name -- a string
351
+ //# - A list of [Virtual Parts](#virtual-part-initialization)
352
352
353
353
@javadoc (" The configuration for a Virtual Field. A Virtual Field is a field constructed from parts of other fields for use with beacons, but never itself stored on items." )
354
354
structure VirtualField {
@@ -442,8 +442,8 @@ structure GetSuffix {
442
442
//= specification/searchable-encryption/virtual.md#getsubstring-transform-initialization
443
443
//= type=implication
444
444
//# On initialization of a GetSubstring Transform, the caller MUST provide:
445
- //# * low : an integer [position](#position-definition)
446
- //# * high : an integer [position](#position-definition)
445
+ //# - low : an integer [position](#position-definition)
446
+ //# - high : an integer [position](#position-definition)
447
447
448
448
// return range of characters, 0-based counting
449
449
// low is inclusive, high is exclusive
@@ -464,8 +464,8 @@ structure GetSubstring {
464
464
//= specification/searchable-encryption/virtual.md#getsegment-transform-initialization
465
465
//= type=implication
466
466
//# On initialization of a GetSegment Transform, the caller MUST provide:
467
- //# * split : an character
468
- //# * index : an integer [position](#position-definition)
467
+ //# - split : an character
468
+ //# - index : an integer [position](#position-definition)
469
469
470
470
// split string on character, then return one piece.
471
471
// 'index' has the same semantics as 'low' in GetSubstring
@@ -482,9 +482,9 @@ structure GetSegment {
482
482
//= specification/searchable-encryption/virtual.md#getsegments-transform-initialization
483
483
//= type=implication
484
484
//# On initialization of a GetSegments Transform, the caller MUST provide:
485
- //# * split : an character
486
- //# * low : an integer [position](#position-definition)
487
- //# * high : an integer [position](#position-definition)
485
+ //# - split : an character
486
+ //# - low : an integer [position](#position-definition)
487
+ //# - high : an integer [position](#position-definition)
488
488
489
489
// split string on character, then return range of pieces.
490
490
// 'low' and 'high' have the same semantics as GetSubstring
@@ -504,14 +504,14 @@ structure GetSegments {
504
504
//= specification/searchable-encryption/virtual.md#virtual-transform-initialization
505
505
//= type=implication
506
506
//# On initialization of a Virtual Transform, the caller MUST provide exactly one of
507
- //# * an [Upper](#upper-transform-initialization) transform
508
- //# * a [Lower](#lower-transform-initialization) transform
509
- //# * an [Insert](#insert-transform-initialization) transform
510
- //# * a [GetPrefix](#getprefix-transform-initialization) transform
511
- //# * a [GetSuffix](#getsuffix-transform-initialization) transform
512
- //# * a [GetSubstring](#getsubstring-transform-initialization) transform
513
- //# * a [GetSegment](#getsegment-transform-initialization) transform
514
- //# * a [GetSegments](#getsegments-transform-initialization) transform
507
+ //# - an [Upper](#upper-transform-initialization) transform
508
+ //# - a [Lower](#lower-transform-initialization) transform
509
+ //# - an [Insert](#insert-transform-initialization) transform
510
+ //# - a [GetPrefix](#getprefix-transform-initialization) transform
511
+ //# - a [GetSuffix](#getsuffix-transform-initialization) transform
512
+ //# - a [GetSubstring](#getsubstring-transform-initialization) transform
513
+ //# - a [GetSegment](#getsegment-transform-initialization) transform
514
+ //# - a [GetSegments](#getsegments-transform-initialization) transform
515
515
516
516
union VirtualTransform {
517
517
upper : Upper ,
@@ -566,10 +566,10 @@ structure SharedSet {
566
566
//= type=implication
567
567
//# On initialization of a Beacon Style, the caller MUST provide exactly one of
568
568
//#
569
- //# * a [PartOnly](#partonly-initialization)
570
- //# * a [Shared](#shared-initialization)
571
- //# * an [AsSet](#asset-initialization)
572
- //# * a [SharedSet](#sharedset-initialization)
569
+ //# - a [PartOnly](#partonly-initialization)
570
+ //# - a [Shared](#shared-initialization)
571
+ //# - an [AsSet](#asset-initialization)
572
+ //# - a [SharedSet](#sharedset-initialization)
573
573
574
574
union BeaconStyle {
575
575
partOnly : PartOnly ,
@@ -581,8 +581,8 @@ union BeaconStyle {
581
581
//= specification/searchable-encryption/beacons.md#encrypted-part-initialization
582
582
//= type=implication
583
583
//# On initialization of a [encrypted part](#encrypted-part-initialization), the caller MUST provide:
584
- //# * A name -- a string, the name of a standard beacon
585
- //# * A prefix -- a string
584
+ //# - A name -- a string, the name of a standard beacon
585
+ //# - A prefix -- a string
586
586
587
587
@javadoc (" A part of a Compound Beacon that contains a beacon over encrypted data." )
588
588
structure EncryptedPart {
@@ -597,8 +597,8 @@ structure EncryptedPart {
597
597
//= specification/searchable-encryption/beacons.md#signed-part-initialization
598
598
//= type=implication
599
599
//# On initialization of a [signed part](#signed-part-initialization), the caller MUST provide:
600
- //# * A name -- a string
601
- //# * A prefix -- a string
600
+ //# - A name -- a string
601
+ //# - A prefix -- a string
602
602
603
603
//= specification/searchable-encryption/beacons.md#signed-part-initialization
604
604
//= type=implication
@@ -620,7 +620,7 @@ structure SignedPart {
620
620
//= specification/searchable-encryption/beacons.md#constructor-initialization
621
621
//= type=implication
622
622
//# On initialization of a constructor, the caller MUST provide:
623
- //# * A non-empty list of [Constructor parts](#constructor-part-initialization)
623
+ //# - A non-empty list of [Constructor parts](#constructor-part-initialization)
624
624
625
625
@javadoc (" The configuration for a particular Compound Beacon construction." )
626
626
structure Constructor {
@@ -632,8 +632,8 @@ structure Constructor {
632
632
//= specification/searchable-encryption/beacons.md#constructor-part-initialization
633
633
//= type=implication
634
634
//# On initialization of a constructor part, the caller MUST provide:
635
- //# * A name -- a string
636
- //# * A required flag -- a boolean
635
+ //# - A name -- a string
636
+ //# - A required flag -- a boolean
637
637
638
638
@javadoc (" A part of a Compound Becaon Construction." )
639
639
structure ConstructorPart {
@@ -648,13 +648,13 @@ structure ConstructorPart {
648
648
//= specification/searchable-encryption/beacons.md#standard-beacon-initialization
649
649
//= type=implication
650
650
//# On initialization of a Standard Beacon, the caller MUST provide:
651
- //# * A name -- a string
652
- //# * A `length` -- a [beacon length](#beacon-length)
651
+ //# - A name -- a string
652
+ //# - A `length` -- a [beacon length](#beacon-length)
653
653
654
654
//= specification/searchable-encryption/beacons.md#standard-beacon-initialization
655
655
//= type=implication
656
656
//# On initialization of a Standard Beacon, the caller MAY provide:
657
- //# * a [terminal location](virtual.md#terminal-location) -- a string
657
+ //# - a [terminal location](virtual.md#terminal-location) -- a string
658
658
659
659
@javadoc (" The configuration for a Standard Beacon." )
660
660
structure StandardBeacon {
@@ -673,15 +673,15 @@ structure StandardBeacon {
673
673
//= specification/searchable-encryption/beacons.md#compound-beacon-initialization
674
674
//= type=implication
675
675
//# On initialization of a Compound Beacon, the caller MUST provide:
676
- //# * A name -- a string
677
- //# * A split character -- a character
676
+ //# - A name -- a string
677
+ //# - A split character -- a character
678
678
679
679
//= specification/searchable-encryption/beacons.md#compound-beacon-initialization
680
680
//= type=implication
681
681
//# On initialization of a Compound Beacon, the caller MAY provide:
682
- //# * A list of [encrypted parts](#encrypted-part-initialization)
683
- //# * A list of [signed parts](#signed-part-initialization)
684
- //# * A list of constructors
682
+ //# - A list of [encrypted parts](#encrypted-part-initialization)
683
+ //# - A list of [signed parts](#signed-part-initialization)
684
+ //# - A list of constructors
685
685
686
686
@javadoc (" The configuration for a Compound Beacon." )
687
687
structure CompoundBeacon {
@@ -740,8 +740,8 @@ structure MultiKeyStore {
740
740
//= specification/searchable-encryption/search-config.md#beacon-key-source
741
741
//= type=implication
742
742
//# On initialization of a Beacon Key Source, the caller MUST provide exactly one of
743
- //# * a [Single Key Store](#single-key-store-initialization)
744
- //# * a [Multi Key Store](#multi-key-store-initialization)
743
+ //# - a [Single Key Store](#single-key-store-initialization)
744
+ //# - a [Multi Key Store](#multi-key-store-initialization)
745
745
746
746
union BeaconKeySource {
747
747
single : SingleKeyStore ,
@@ -791,8 +791,8 @@ structure BeaconVersion {
791
791
//= specification/searchable-encryption/search-config.md#initialization
792
792
//= type=implication
793
793
//# On initialization of the Search Config, the caller MUST provide:
794
- //# - A list of [beacon versions](#beacon-version-initialization)
795
- //# - The [version number](#version-number) of the [beacon versions](#beacon-version) to be used for writing.
794
+ //# - A list of [beacon versions](#beacon-version-initialization)
795
+ //# - The [version number](#version-number) of the [beacon versions](#beacon-version-initialization ) to be used for writing.
796
796
797
797
@javadoc (" The configuration for searchable encryption." )
798
798
structure SearchConfig {
@@ -855,7 +855,7 @@ operation CreateDynamoDbEncryptionBranchKeyIdSupplier {
855
855
856
856
//= specification/dynamodb-encryption-client/ddb-encryption-branch-key-id-supplier.md#input
857
857
//= type=implication
858
- //# This operation MUST take in a [DynamoDbKeyBranchKeyIdSupplier](#dynamodb-key-branch-key-id-supplier ) as input.
858
+ //# This operation MUST take in a [DynamoDbKeyBranchKeyIdSupplier](#dynamodbkeybranchkeyidsupplier ) as input.
859
859
@javadoc (" Inputs for creating a Branch Key Supplier from a DynamoDB Key Branch Key Id Supplier" )
860
860
structure CreateDynamoDbEncryptionBranchKeyIdSupplierInput {
861
861
@required
0 commit comments