NotebookInstanceLifecycleConfigurationState constructor

const NotebookInstanceLifecycleConfigurationState({
  1. Input<String?>? arn,
  2. Input<String?>? name,
  3. Input<String?>? onCreate,
  4. Input<String?>? onStart,
  5. Input<String?>? region,
  6. Input<Map<String, String>?>? tags,
  7. Input<Map<String, String>?>? tagsAll,
})

Creates a new NotebookInstanceLifecycleConfigurationState. arn ARN assigned by AWS to this lifecycle configuration. name The name of the lifecycle configuration (must be unique). If omitted, this provider will assign a random, unique name. onCreate A shell script (base64-encoded) that runs only once when the SageMaker AI Notebook Instance is created. onStart A shell script (base64-encoded) that runs every time the SageMaker AI Notebook Instance is started including the time it's created. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. tags A mapping of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. tagsAll A map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

Implementation

const NotebookInstanceLifecycleConfigurationState({
  this.arn,
  this.name,
  this.onCreate,
  this.onStart,
  this.region,
  this.tags,
  this.tagsAll,
});