amazonka-lakeformation-2.0: Amazon Lake Formation 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.LakeFormation.Types.DeleteObjectInput

Description

 
Synopsis

Documentation

data DeleteObjectInput Source #

An object to delete from the governed table.

See: newDeleteObjectInput smart constructor.

Constructors

DeleteObjectInput' 

Fields

  • eTag :: Maybe Text

    The Amazon S3 ETag of the object. Returned by GetTableObjects for validation and used to identify changes to the underlying data.

  • partitionValues :: Maybe (NonEmpty Text)

    A list of partition values for the object. A value must be specified for each partition key associated with the governed table.

  • uri :: Text

    The Amazon S3 location of the object to delete.

Instances

Instances details
ToJSON DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

Generic DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

Associated Types

type Rep DeleteObjectInput :: Type -> Type #

Read DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

Show DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

NFData DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

Methods

rnf :: DeleteObjectInput -> () #

Eq DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

Hashable DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

type Rep DeleteObjectInput Source # 
Instance details

Defined in Amazonka.LakeFormation.Types.DeleteObjectInput

type Rep DeleteObjectInput = D1 ('MetaData "DeleteObjectInput" "Amazonka.LakeFormation.Types.DeleteObjectInput" "amazonka-lakeformation-2.0-HHqQokxI1tpCfoS44CTFPa" 'False) (C1 ('MetaCons "DeleteObjectInput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eTag") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "partitionValues") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "uri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDeleteObjectInput Source #

Create a value of DeleteObjectInput 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:eTag:DeleteObjectInput', deleteObjectInput_eTag - The Amazon S3 ETag of the object. Returned by GetTableObjects for validation and used to identify changes to the underlying data.

$sel:partitionValues:DeleteObjectInput', deleteObjectInput_partitionValues - A list of partition values for the object. A value must be specified for each partition key associated with the governed table.

$sel:uri:DeleteObjectInput', deleteObjectInput_uri - The Amazon S3 location of the object to delete.

deleteObjectInput_eTag :: Lens' DeleteObjectInput (Maybe Text) Source #

The Amazon S3 ETag of the object. Returned by GetTableObjects for validation and used to identify changes to the underlying data.

deleteObjectInput_partitionValues :: Lens' DeleteObjectInput (Maybe (NonEmpty Text)) Source #

A list of partition values for the object. A value must be specified for each partition key associated with the governed table.

deleteObjectInput_uri :: Lens' DeleteObjectInput Text Source #

The Amazon S3 location of the object to delete.