#[non_exhaustive]pub struct ZeppelinApplicationConfigurationUpdate {
pub monitoring_configuration_update: Option<ZeppelinMonitoringConfigurationUpdate>,
pub catalog_configuration_update: Option<CatalogConfigurationUpdate>,
pub deploy_as_application_configuration_update: Option<DeployAsApplicationConfigurationUpdate>,
pub custom_artifacts_configuration_update: Option<Vec<CustomArtifactConfiguration>>,
}Expand description
Updates to the configuration of Kinesis Data Analytics Studio notebook.
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.monitoring_configuration_update: Option<ZeppelinMonitoringConfigurationUpdate>Updates to the monitoring configuration of a Kinesis Data Analytics Studio notebook.
catalog_configuration_update: Option<CatalogConfigurationUpdate>Updates to the configuration of the Amazon Glue Data Catalog that is associated with the Kinesis Data Analytics Studio notebook.
deploy_as_application_configuration_update: Option<DeployAsApplicationConfigurationUpdate>Updates to the configuration information required to deploy an Amazon Data Analytics Studio notebook as an application with durable state.
custom_artifacts_configuration_update: Option<Vec<CustomArtifactConfiguration>>Updates to the customer artifacts. Custom artifacts are dependency JAR files and user-defined functions (UDF).
Implementations§
source§impl ZeppelinApplicationConfigurationUpdate
impl ZeppelinApplicationConfigurationUpdate
sourcepub fn monitoring_configuration_update(
&self
) -> Option<&ZeppelinMonitoringConfigurationUpdate>
pub fn monitoring_configuration_update( &self ) -> Option<&ZeppelinMonitoringConfigurationUpdate>
Updates to the monitoring configuration of a Kinesis Data Analytics Studio notebook.
sourcepub fn catalog_configuration_update(
&self
) -> Option<&CatalogConfigurationUpdate>
pub fn catalog_configuration_update( &self ) -> Option<&CatalogConfigurationUpdate>
Updates to the configuration of the Amazon Glue Data Catalog that is associated with the Kinesis Data Analytics Studio notebook.
sourcepub fn deploy_as_application_configuration_update(
&self
) -> Option<&DeployAsApplicationConfigurationUpdate>
pub fn deploy_as_application_configuration_update( &self ) -> Option<&DeployAsApplicationConfigurationUpdate>
Updates to the configuration information required to deploy an Amazon Data Analytics Studio notebook as an application with durable state.
sourcepub fn custom_artifacts_configuration_update(
&self
) -> &[CustomArtifactConfiguration]
pub fn custom_artifacts_configuration_update( &self ) -> &[CustomArtifactConfiguration]
Updates to the customer artifacts. Custom artifacts are dependency JAR files and user-defined functions (UDF).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .custom_artifacts_configuration_update.is_none().
source§impl ZeppelinApplicationConfigurationUpdate
impl ZeppelinApplicationConfigurationUpdate
sourcepub fn builder() -> ZeppelinApplicationConfigurationUpdateBuilder
pub fn builder() -> ZeppelinApplicationConfigurationUpdateBuilder
Creates a new builder-style object to manufacture ZeppelinApplicationConfigurationUpdate.
Trait Implementations§
source§impl Clone for ZeppelinApplicationConfigurationUpdate
impl Clone for ZeppelinApplicationConfigurationUpdate
source§fn clone(&self) -> ZeppelinApplicationConfigurationUpdate
fn clone(&self) -> ZeppelinApplicationConfigurationUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ZeppelinApplicationConfigurationUpdate
impl PartialEq for ZeppelinApplicationConfigurationUpdate
source§fn eq(&self, other: &ZeppelinApplicationConfigurationUpdate) -> bool
fn eq(&self, other: &ZeppelinApplicationConfigurationUpdate) -> bool
self and other values to be equal, and is used
by ==.