@Stability(value=Stable)
public static interface CfnServer.IdentityProviderDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Accepts an array containing all of the information required to use a directory in AWS_DIRECTORY_SERVICE or invoke a customer-supplied authentication API, including the API Gateway URL. Not required when IdentityProviderType is set to SERVICE_MANAGED .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.transfer.*;
IdentityProviderDetailsProperty identityProviderDetailsProperty = IdentityProviderDetailsProperty.builder()
.directoryId("directoryId")
.function("function")
.invocationRole("invocationRole")
.url("url")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnServer.IdentityProviderDetailsProperty.Builder
A builder for
CfnServer.IdentityProviderDetailsProperty |
static class |
CfnServer.IdentityProviderDetailsProperty.Jsii$Proxy
An implementation for
CfnServer.IdentityProviderDetailsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnServer.IdentityProviderDetailsProperty.Builder |
builder() |
default String |
getDirectoryId()
The identifier of the AWS Directory Service directory that you want to stop sharing.
|
default String |
getFunction()
The ARN for a lambda function to use for the Identity provider.
|
default String |
getInvocationRole()
Provides the type of `InvocationRole` used to authenticate the user account.
|
default String |
getUrl()
Provides the location of the service endpoint used to authenticate users.
|
@Stability(value=Stable) @Nullable default String getDirectoryId()
@Stability(value=Stable) @Nullable default String getFunction()
@Stability(value=Stable) @Nullable default String getInvocationRole()
@Stability(value=Stable) @Nullable default String getUrl()
@Stability(value=Stable) static CfnServer.IdentityProviderDetailsProperty.Builder builder()
Copyright © 2022. All rights reserved.