#[non_exhaustive]pub struct CreateFlywheelInput { /* private fields */ }Implementations§
source§impl CreateFlywheelInput
impl CreateFlywheelInput
sourcepub fn flywheel_name(&self) -> Option<&str>
pub fn flywheel_name(&self) -> Option<&str>
Name for the flywheel.
sourcepub fn active_model_arn(&self) -> Option<&str>
pub fn active_model_arn(&self) -> Option<&str>
To associate an existing model with the flywheel, specify the Amazon Resource Number (ARN) of the model version.
sourcepub fn data_access_role_arn(&self) -> Option<&str>
pub fn data_access_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend the permissions required to access the flywheel data in the data lake.
sourcepub fn task_config(&self) -> Option<&TaskConfig>
pub fn task_config(&self) -> Option<&TaskConfig>
Configuration about the custom classifier associated with the flywheel.
sourcepub fn model_type(&self) -> Option<&ModelType>
pub fn model_type(&self) -> Option<&ModelType>
The model type.
sourcepub fn data_lake_s3_uri(&self) -> Option<&str>
pub fn data_lake_s3_uri(&self) -> Option<&str>
Enter the S3 location for the data lake. You can specify a new S3 bucket or a new folder of an existing S3 bucket. The flywheel creates the data lake at this location.
sourcepub fn data_security_config(&self) -> Option<&DataSecurityConfig>
pub fn data_security_config(&self) -> Option<&DataSecurityConfig>
Data security configurations.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
The tags to associate with this flywheel.
source§impl CreateFlywheelInput
impl CreateFlywheelInput
sourcepub fn builder() -> CreateFlywheelInputBuilder
pub fn builder() -> CreateFlywheelInputBuilder
Creates a new builder-style object to manufacture CreateFlywheelInput.
source§impl CreateFlywheelInput
impl CreateFlywheelInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateFlywheel, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<CreateFlywheel, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateFlywheel>
Trait Implementations§
source§impl Clone for CreateFlywheelInput
impl Clone for CreateFlywheelInput
source§fn clone(&self) -> CreateFlywheelInput
fn clone(&self) -> CreateFlywheelInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateFlywheelInput
impl Debug for CreateFlywheelInput
source§impl PartialEq<CreateFlywheelInput> for CreateFlywheelInput
impl PartialEq<CreateFlywheelInput> for CreateFlywheelInput
source§fn eq(&self, other: &CreateFlywheelInput) -> bool
fn eq(&self, other: &CreateFlywheelInput) -> bool
self and other values to be equal, and is used
by ==.