amazonka-s3-2.0: Amazon Simple Storage Service 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.S3.Types.GetObjectAttributesParts

Description

 
Synopsis

Documentation

data GetObjectAttributesParts Source #

A collection of parts associated with a multipart upload.

See: newGetObjectAttributesParts smart constructor.

Constructors

GetObjectAttributesParts' 

Fields

  • isTruncated :: Maybe Bool

    Indicates whether the returned list of parts is truncated. A value of true indicates that the list was truncated. A list can be truncated if the number of parts exceeds the limit returned in the MaxParts element.

  • maxParts :: Maybe Int

    The maximum number of parts allowed in the response.

  • nextPartNumberMarker :: Maybe Int

    When a list is truncated, this element specifies the last part in the list, as well as the value to use for the PartNumberMarker request parameter in a subsequent request.

  • partNumberMarker :: Maybe Int

    The marker for the current part.

  • parts :: Maybe [ObjectPart]

    A container for elements related to a particular part. A response can contain zero or more Parts elements.

  • totalPartsCount :: Maybe Int

    The total number of parts.

Instances

Instances details
FromXML GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

Generic GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

Associated Types

type Rep GetObjectAttributesParts :: Type -> Type #

Read GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

Show GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

NFData GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

Eq GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

Hashable GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

type Rep GetObjectAttributesParts Source # 
Instance details

Defined in Amazonka.S3.Types.GetObjectAttributesParts

type Rep GetObjectAttributesParts = D1 ('MetaData "GetObjectAttributesParts" "Amazonka.S3.Types.GetObjectAttributesParts" "amazonka-s3-2.0-CNZtv1UmVzj28JXsFvwNoj" 'False) (C1 ('MetaCons "GetObjectAttributesParts'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "isTruncated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "maxParts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "nextPartNumberMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))) :*: (S1 ('MetaSel ('Just "partNumberMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "parts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ObjectPart])) :*: S1 ('MetaSel ('Just "totalPartsCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))))

newGetObjectAttributesParts :: GetObjectAttributesParts Source #

Create a value of GetObjectAttributesParts 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:isTruncated:GetObjectAttributesParts', getObjectAttributesParts_isTruncated - Indicates whether the returned list of parts is truncated. A value of true indicates that the list was truncated. A list can be truncated if the number of parts exceeds the limit returned in the MaxParts element.

$sel:maxParts:GetObjectAttributesParts', getObjectAttributesParts_maxParts - The maximum number of parts allowed in the response.

$sel:nextPartNumberMarker:GetObjectAttributesParts', getObjectAttributesParts_nextPartNumberMarker - When a list is truncated, this element specifies the last part in the list, as well as the value to use for the PartNumberMarker request parameter in a subsequent request.

$sel:partNumberMarker:GetObjectAttributesParts', getObjectAttributesParts_partNumberMarker - The marker for the current part.

$sel:parts:GetObjectAttributesParts', getObjectAttributesParts_parts - A container for elements related to a particular part. A response can contain zero or more Parts elements.

$sel:totalPartsCount:GetObjectAttributesParts', getObjectAttributesParts_totalPartsCount - The total number of parts.

getObjectAttributesParts_isTruncated :: Lens' GetObjectAttributesParts (Maybe Bool) Source #

Indicates whether the returned list of parts is truncated. A value of true indicates that the list was truncated. A list can be truncated if the number of parts exceeds the limit returned in the MaxParts element.

getObjectAttributesParts_maxParts :: Lens' GetObjectAttributesParts (Maybe Int) Source #

The maximum number of parts allowed in the response.

getObjectAttributesParts_nextPartNumberMarker :: Lens' GetObjectAttributesParts (Maybe Int) Source #

When a list is truncated, this element specifies the last part in the list, as well as the value to use for the PartNumberMarker request parameter in a subsequent request.

getObjectAttributesParts_parts :: Lens' GetObjectAttributesParts (Maybe [ObjectPart]) Source #

A container for elements related to a particular part. A response can contain zero or more Parts elements.