File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export default ({
2828 LastAccessedDate : lastAccessedDate ,
2929 DeletedDate : deletedDate ,
3030 OwningService : owningService ,
31+ CreatedDate : createdDate ,
3132 Tags,
3233 } = service
3334
@@ -47,6 +48,7 @@ export default ({
4748 lastChangedDate : lastChangedDate ?. toISOString ( ) ,
4849 lastAccessedDate : lastAccessedDate ?. toISOString ( ) ,
4950 deletedDate : deletedDate ?. toISOString ( ) ,
51+ createdDate : createdDate ?. toISOString ( ) ,
5052 owningService,
5153 }
5254}
Original file line number Diff line number Diff line change @@ -20,9 +20,10 @@ type awsSecretsManager @key(fields: "arn") {
2020 rotationEnabled : Boolean @search
2121 rotationLambdaARN : String @search (by : [hash , regexp ])
2222 rotationRules : awsSecretsManagerRotationRule
23- lastRotatedDate : String @search (by : [hash , regexp ])
24- lastChangedDate : String @search (by : [hash , regexp ])
25- lastAccessedDate : String @search (by : [hash , regexp ])
26- deletedDate : String @search (by : [hash , regexp ])
23+ lastRotatedDate : DateTime @search (by : [day ])
24+ lastChangedDate : DateTime @search (by : [day ])
25+ lastAccessedDate : DateTime @search (by : [day ])
26+ deletedDate : DateTime @search (by : [day ])
27+ createdDate : DateTime @search (by : [day ])
2728 owningService : String @search (by : [hash , regexp ])
2829}
Original file line number Diff line number Diff line change @@ -3789,13 +3789,14 @@ export type AwsSageMakerProject = {
37893789export type AwsSecretsManager = {
37903790 accountId : Scalars [ 'String' ] ;
37913791 arn : Scalars [ 'String' ] ;
3792- deletedDate ?: Maybe < Scalars [ 'String' ] > ;
3792+ createdDate ?: Maybe < Scalars [ 'DateTime' ] > ;
3793+ deletedDate ?: Maybe < Scalars [ 'DateTime' ] > ;
37933794 description ?: Maybe < Scalars [ 'String' ] > ;
37943795 id : Scalars [ 'String' ] ;
37953796 kmsKeyId ?: Maybe < Scalars [ 'String' ] > ;
3796- lastAccessedDate ?: Maybe < Scalars [ 'String ' ] > ;
3797- lastChangedDate ?: Maybe < Scalars [ 'String ' ] > ;
3798- lastRotatedDate ?: Maybe < Scalars [ 'String ' ] > ;
3797+ lastAccessedDate ?: Maybe < Scalars [ 'DateTime ' ] > ;
3798+ lastChangedDate ?: Maybe < Scalars [ 'DateTime ' ] > ;
3799+ lastRotatedDate ?: Maybe < Scalars [ 'DateTime ' ] > ;
37993800 name ?: Maybe < Scalars [ 'String' ] > ;
38003801 owningService ?: Maybe < Scalars [ 'String' ] > ;
38013802 region ?: Maybe < Scalars [ 'String' ] > ;
You can’t perform that action at this time.
0 commit comments