Home
last modified time | relevance | path

Searched defs:activeDate (Results 1 – 4 of 4) sorted by relevance

/external/aws-sdk-java-v2/services/cloudfront/src/main/java/software/amazon/awssdk/services/cloudfront/model/
DCustomSignerRequest.java43 private final Instant activeDate; field in CustomSignerRequest
91 public Instant activeDate() { in activeDate() method in CustomSignerRequest
172 Builder activeDate(Instant activeDate); in activeDate() method
189 private Instant activeDate; field in CustomSignerRequest.DefaultBuilder
235 public Builder activeDate(Instant activeDate) { in activeDate() method in CustomSignerRequest.DefaultBuilder
/external/aws-sdk-java-v2/services/cloudfront/src/test/java/software/amazon/awssdk/services/cloudfront/
DCloudFrontUtilitiesTest.java113 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getSignedURLWithCustomPolicy_producesValidUrl() local
140 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getSignedURLWithCustomPolicy_withQueryParams_producesValidUrl() local
164 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getSignedURLWithCustomPolicy_withIpRangeOmitted_producesValidUrl() local
238 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getSignedURLWithCustomPolicy_withEncodedUrl_doesNotDecodeUrl() local
279 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getCookiesForCustomPolicy_producesValidCookies() local
DCloudFrontUtilitiesIntegrationTest.java153 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getSignedUrlWithCustomPolicy_producesValidUrl() local
175 Instant activeDate = LocalDate.of(2040, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getSignedUrlWithCustomPolicy_withFutureActiveDate_shouldReturn403Response() local
231 Instant activeDate = LocalDate.of(2022, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getCookiesForCustomPolicy_producesValidCookies() local
252 Instant activeDate = LocalDate.of(2040, 1, 1).atStartOfDay().toInstant(ZoneOffset.of("Z")); in getCookiesForCustomPolicy_withFutureActiveDate_shouldReturn403Response() local
/external/aws-sdk-java-v2/services/cloudfront/src/main/java/software/amazon/awssdk/services/cloudfront/internal/utils/
DSigningUtils.java73 …public static String buildCustomPolicy(String resourceUrl, Instant activeDate, Instant expirationD… in buildCustomPolicy()
175 Instant activeDate, in buildCustomPolicyForSignedUrl()