Class CrtS3ExpressNoOpAuthScheme
- java.lang.Object
-
- software.amazon.awssdk.services.s3.internal.crt.CrtS3ExpressNoOpAuthScheme
-
- All Implemented Interfaces:
AuthScheme<S3ExpressSessionCredentials>
,S3ExpressAuthScheme
public final class CrtS3ExpressNoOpAuthScheme extends Object implements S3ExpressAuthScheme
An implementation ofS3ExpressAuthScheme
that returns a noopIdentityProvider
.
-
-
Field Summary
-
Fields inherited from interface software.amazon.awssdk.services.s3.s3express.S3ExpressAuthScheme
SCHEME_ID
-
-
Constructor Summary
Constructors Constructor Description CrtS3ExpressNoOpAuthScheme()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IdentityProvider<S3ExpressSessionCredentials>
identityProvider(IdentityProviders providers)
Retrieve theAwsCredentialsIdentity
basedIdentityProvider
associated with this authentication scheme.String
schemeId()
HttpSigner<S3ExpressSessionCredentials>
signer()
Retrieve theAwsV4HttpSigner
associated with this authentication scheme.
-
-
-
Method Detail
-
schemeId
public String schemeId()
- Specified by:
schemeId
in interfaceAuthScheme<S3ExpressSessionCredentials>
-
identityProvider
public IdentityProvider<S3ExpressSessionCredentials> identityProvider(IdentityProviders providers)
Description copied from interface:S3ExpressAuthScheme
Retrieve theAwsCredentialsIdentity
basedIdentityProvider
associated with this authentication scheme.- Specified by:
identityProvider
in interfaceAuthScheme<S3ExpressSessionCredentials>
- Specified by:
identityProvider
in interfaceS3ExpressAuthScheme
-
signer
public HttpSigner<S3ExpressSessionCredentials> signer()
Description copied from interface:S3ExpressAuthScheme
Retrieve theAwsV4HttpSigner
associated with this authentication scheme.- Specified by:
signer
in interfaceAuthScheme<S3ExpressSessionCredentials>
- Specified by:
signer
in interfaceS3ExpressAuthScheme
-
-