File tree 3 files changed +5
-5
lines changed
generator/ServiceClientGeneratorLib/Generators/SourceFiles
sdk/src/Core/Amazon.Runtime/Internal
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -711,12 +711,12 @@ public override void GetObjectData(System.Runtime.Serialization.SerializationInf
711
711
}
712
712
if ( this . StructureType == StructureType . Request )
713
713
{
714
- // Add PaginationKey attribute to Request Pagination properties that will be used by PowerShell for Auto-Iteration
714
+ // Add PaginationRequestKey attribute to Request Pagination properties that will be used by PowerShell for Auto-Iteration
715
715
bool hasPaginatorInputToken = this . StructureType == StructureType . Request && this . Operation ? . Paginators ? . InputTokens . Any ( x => x . PropertyName == member . PropertyName ) == true ;
716
716
bool hasPaginatorLimitKey = this . StructureType == StructureType . Request && this . Operation ? . Paginators ? . LimitKey ? . PropertyName == member . PropertyName ;
717
717
if ( hasPaginatorInputToken || hasPaginatorLimitKey )
718
718
{
719
- propertyAttributes . Add ( "PaginationKey =true" ) ;
719
+ propertyAttributes . Add ( "PaginationRequestKey =true" ) ;
720
720
}
721
721
}
722
722
Original file line number Diff line number Diff line change @@ -222,12 +222,12 @@ namespace <#=this.Config.Namespace#>.Model
222
222
}
223
223
if (this.StructureType == StructureType.Request)
224
224
{
225
- // Add PaginationKey attribute to Request Pagination properties that will be used by PowerShell for Auto-Iteration
225
+ // Add PaginationRequestKey attribute to Request Pagination properties that will be used by PowerShell for Auto-Iteration
226
226
bool hasPaginatorInputToken = this.StructureType == StructureType.Request && this.Operation?.Paginators?.InputTokens.Any(x => x.PropertyName == member.PropertyName) == true;
227
227
bool hasPaginatorLimitKey = this.StructureType == StructureType.Request && this.Operation?.Paginators?.LimitKey?.PropertyName == member.PropertyName;
228
228
if (hasPaginatorInputToken || hasPaginatorLimitKey)
229
229
{
230
- propertyAttributes.Add("PaginationKey =true");
230
+ propertyAttributes.Add("PaginationRequestKey =true");
231
231
}
232
232
}
233
233
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public sealed class AWSPropertyAttribute : Attribute
9
9
private long max ;
10
10
public bool Sensitive { get ; set ; }
11
11
public bool Required { get ; set ; }
12
- public bool PaginationKey { get ; set ; }
12
+ public bool PaginationRequestKey { get ; set ; }
13
13
14
14
public bool IsMinSet { get ; private set ; }
15
15
public long Min
You can’t perform that action at this time.
0 commit comments