Package com.pulumi.aws.mskconnect
Class WorkerConfiguration
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.mskconnect.WorkerConfiguration
-
public class WorkerConfiguration extends com.pulumi.resources.CustomResource
Provides an Amazon MSK Connect Worker Configuration Resource. ## Example Usage ### Basic configuration <!--Start PulumiCodeChooser -->package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.mskconnect.WorkerConfiguration; import com.pulumi.aws.mskconnect.WorkerConfigurationArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new WorkerConfiguration("example", WorkerConfigurationArgs.builder() .name("example") .propertiesFileContent(""" key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=org.apache.kafka.connect.storage.StringConverter """) .build()); } }
-
-
Constructor Summary
Constructors Constructor Description WorkerConfiguration(java.lang.String name)
WorkerConfiguration(java.lang.String name, WorkerConfigurationArgs args)
WorkerConfiguration(java.lang.String name, WorkerConfigurationArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
arn()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
description()
static WorkerConfiguration
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, WorkerConfigurationState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.lang.Integer>
latestRevision()
com.pulumi.core.Output<java.lang.String>
name()
com.pulumi.core.Output<java.lang.String>
propertiesFileContent()
com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>>
tags()
com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>>
tagsAll()
-
-
-
Constructor Detail
-
WorkerConfiguration
public WorkerConfiguration(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
WorkerConfiguration
public WorkerConfiguration(java.lang.String name, WorkerConfigurationArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
WorkerConfiguration
public WorkerConfiguration(java.lang.String name, WorkerConfigurationArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
arn
public com.pulumi.core.Output<java.lang.String> arn()
- Returns:
- the Amazon Resource Name (ARN) of the worker configuration.
-
description
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> description()
- Returns:
- A summary description of the worker configuration.
-
latestRevision
public com.pulumi.core.Output<java.lang.Integer> latestRevision()
- Returns:
- an ID of the latest successfully created revision of the worker configuration.
-
name
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The name of the worker configuration.
-
propertiesFileContent
public com.pulumi.core.Output<java.lang.String> propertiesFileContent()
- Returns:
- Contents of connect-distributed.properties file. The value can be either base64 encoded or in raw format. The following arguments are optional:
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- A map of tags to assign to the resource. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
-
tagsAll
public com.pulumi.core.Output<java.util.Map<java.lang.String,java.lang.String>> tagsAll()
- Returns:
- A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
-
get
public static WorkerConfiguration get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable WorkerConfigurationState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-