#[non_exhaustive]pub struct JobManifestLocationBuilder { /* private fields */ }Expand description
A builder for JobManifestLocation.
Implementations§
source§impl JobManifestLocationBuilder
impl JobManifestLocationBuilder
sourcepub fn object_arn(self, input: impl Into<String>) -> Self
pub fn object_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for a manifest object.
When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
sourcepub fn set_object_arn(self, input: Option<String>) -> Self
pub fn set_object_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for a manifest object.
When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
sourcepub fn get_object_arn(&self) -> &Option<String>
pub fn get_object_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) for a manifest object.
When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
sourcepub fn object_version_id(self, input: impl Into<String>) -> Self
pub fn object_version_id(self, input: impl Into<String>) -> Self
The optional version ID to identify a specific version of the manifest object.
sourcepub fn set_object_version_id(self, input: Option<String>) -> Self
pub fn set_object_version_id(self, input: Option<String>) -> Self
The optional version ID to identify a specific version of the manifest object.
sourcepub fn get_object_version_id(&self) -> &Option<String>
pub fn get_object_version_id(&self) -> &Option<String>
The optional version ID to identify a specific version of the manifest object.
sourcepub fn e_tag(self, input: impl Into<String>) -> Self
pub fn e_tag(self, input: impl Into<String>) -> Self
The ETag for the specified manifest object.
This field is required.sourcepub fn set_e_tag(self, input: Option<String>) -> Self
pub fn set_e_tag(self, input: Option<String>) -> Self
The ETag for the specified manifest object.
sourcepub fn build(self) -> Result<JobManifestLocation, BuildError>
pub fn build(self) -> Result<JobManifestLocation, BuildError>
Consumes the builder and constructs a JobManifestLocation.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for JobManifestLocationBuilder
impl Clone for JobManifestLocationBuilder
source§fn clone(&self) -> JobManifestLocationBuilder
fn clone(&self) -> JobManifestLocationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for JobManifestLocationBuilder
impl Debug for JobManifestLocationBuilder
source§impl Default for JobManifestLocationBuilder
impl Default for JobManifestLocationBuilder
source§fn default() -> JobManifestLocationBuilder
fn default() -> JobManifestLocationBuilder
source§impl PartialEq for JobManifestLocationBuilder
impl PartialEq for JobManifestLocationBuilder
source§fn eq(&self, other: &JobManifestLocationBuilder) -> bool
fn eq(&self, other: &JobManifestLocationBuilder) -> bool
self and other values to be equal, and is used
by ==.