Interface SourceAuth.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SourceAuth.Builder,SourceAuth>,SdkBuilder<SourceAuth.Builder,SourceAuth>,SdkPojo
- Enclosing class:
- SourceAuth
public static interface SourceAuth.Builder extends SdkPojo, CopyableBuilder<SourceAuth.Builder,SourceAuth>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceAuth.Builderresource(String resource)The resource value that applies to the specified authorization type.SourceAuth.Buildertype(String type)The authorization type to use.SourceAuth.Buildertype(SourceAuthType type)The authorization type to use.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
type
SourceAuth.Builder type(String type)
The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.
- Parameters:
type- The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SourceAuthType,SourceAuthType
-
type
SourceAuth.Builder type(SourceAuthType type)
The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.
- Parameters:
type- The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SourceAuthType,SourceAuthType
-
resource
SourceAuth.Builder resource(String resource)
The resource value that applies to the specified authorization type.
- Parameters:
resource- The resource value that applies to the specified authorization type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-