amazonka-transfer-2.0: Amazon Transfer Family SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Transfer.Types.DeleteStepDetails

Description

 
Synopsis

Documentation

data DeleteStepDetails Source #

The name of the step, used to identify the delete step.

See: newDeleteStepDetails smart constructor.

Constructors

DeleteStepDetails' 

Fields

  • name :: Maybe Text

    The name of the step, used as an identifier.

  • sourceFileLocation :: Maybe Text

    Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

    • Enter ${previous.file} to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.
    • Enter ${original.file} to use the originally-uploaded file location as input for this step.

Instances

Instances details
FromJSON DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

ToJSON DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

Generic DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

Associated Types

type Rep DeleteStepDetails :: Type -> Type #

Read DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

Show DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

NFData DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

Methods

rnf :: DeleteStepDetails -> () #

Eq DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

Hashable DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

type Rep DeleteStepDetails Source # 
Instance details

Defined in Amazonka.Transfer.Types.DeleteStepDetails

type Rep DeleteStepDetails = D1 ('MetaData "DeleteStepDetails" "Amazonka.Transfer.Types.DeleteStepDetails" "amazonka-transfer-2.0-JiqKYJwOo427yDlzvkXGLY" 'False) (C1 ('MetaCons "DeleteStepDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "sourceFileLocation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newDeleteStepDetails :: DeleteStepDetails Source #

Create a value of DeleteStepDetails with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:DeleteStepDetails', deleteStepDetails_name - The name of the step, used as an identifier.

$sel:sourceFileLocation:DeleteStepDetails', deleteStepDetails_sourceFileLocation - Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

  • Enter ${previous.file} to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.
  • Enter ${original.file} to use the originally-uploaded file location as input for this step.

deleteStepDetails_name :: Lens' DeleteStepDetails (Maybe Text) Source #

The name of the step, used as an identifier.

deleteStepDetails_sourceFileLocation :: Lens' DeleteStepDetails (Maybe Text) Source #

Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.

  • Enter ${previous.file} to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.
  • Enter ${original.file} to use the originally-uploaded file location as input for this step.