Struct aws_sdk_elasticsearch::input::CreatePackageInput [−][src]
#[non_exhaustive]pub struct CreatePackageInput {
pub package_name: Option<String>,
pub package_type: Option<PackageType>,
pub package_description: Option<String>,
pub package_source: Option<PackageSource>,
}
Expand description
Container for request parameters to
operation. CreatePackage
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.package_name: Option<String>
Unique identifier for the package.
package_type: Option<PackageType>
Type of package. Currently supports only TXT-DICTIONARY.
package_description: Option<String>
Description of the package.
package_source: Option<PackageSource>
The customer S3 location PackageSource
for importing the package.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreatePackage, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreatePackage, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreatePackage
>
Creates a new builder-style object to manufacture CreatePackageInput
Unique identifier for the package.
Type of package. Currently supports only TXT-DICTIONARY.
Description of the package.
The customer S3 location PackageSource
for importing the package.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreatePackageInput
impl Send for CreatePackageInput
impl Sync for CreatePackageInput
impl Unpin for CreatePackageInput
impl UnwindSafe for CreatePackageInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more