public enum ConnectorRuntimeSettingScope extends Enum<ConnectorRuntimeSettingScope>
| Enum Constant and Description |
|---|
CONNECTOR_PROFILE
Settings to be populated during connector profile creation
|
DESTINATION
Setting to be populated during a flow creation if the connector is chosen as a destination connector.
|
SOURCE
Setting to be populated during a flow creation if the connector is chosen as a source connector.
|
SOURCE_AND_DESTINATION
Setting to be populated during a flow creation if the connector is chosen either as a source or a destination
connector.
|
| Modifier and Type | Method and Description |
|---|---|
static ConnectorRuntimeSettingScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorRuntimeSettingScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorRuntimeSettingScope CONNECTOR_PROFILE
public static final ConnectorRuntimeSettingScope SOURCE
public static final ConnectorRuntimeSettingScope DESTINATION
public static final ConnectorRuntimeSettingScope SOURCE_AND_DESTINATION
public static ConnectorRuntimeSettingScope[] values()
for (ConnectorRuntimeSettingScope c : ConnectorRuntimeSettingScope.values()) System.out.println(c);
public static ConnectorRuntimeSettingScope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021–2022 Amazon Web Services. All rights reserved.