com.pulumi.aws.gamelift.MatchmakingRuleSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.gamelift;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.gamelift.MatchmakingRuleSetArgs;
import com.pulumi.aws.gamelift.inputs.MatchmakingRuleSetState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Provides a GameLift Matchmaking Rule Set resources.
*
* ## Import
*
* GameLift Matchmaking Rule Sets can be imported using the ID, e.g.,
*
* ```sh
* $ pulumi import aws:gamelift/matchmakingRuleSet:MatchmakingRuleSet example <ruleset-id>
* ```
*
* @deprecated
* This resource will be removed in the next major version.Consider using https://www.pulumi.com/registry/packages/aws-native/api-docs/gamelift/matchmakingruleset/ instead
*
*/
@Deprecated /* This resource will be removed in the next major version.Consider using https://www.pulumi.com/registry/packages/aws-native/api-docs/gamelift/matchmakingruleset/ instead */
@ResourceType(type="aws:gamelift/matchmakingRuleSet:MatchmakingRuleSet")
public class MatchmakingRuleSet extends com.pulumi.resources.CustomResource {
/**
* Rule Set ARN.
*
*/
@Export(name="arn", refs={String.class}, tree="[0]")
private Output arn;
/**
* @return Rule Set ARN.
*
*/
public Output arn() {
return this.arn;
}
/**
* Name of the matchmaking rule set.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Name of the matchmaking rule set.
*
*/
public Output name() {
return this.name;
}
/**
* JSON encoded string containing rule set data.
*
*/
@Export(name="ruleSetBody", refs={String.class}, tree="[0]")
private Output ruleSetBody;
/**
* @return JSON encoded string containing rule set data.
*
*/
public Output ruleSetBody() {
return this.ruleSetBody;
}
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
*
* @deprecated
* Please use `tags` instead.
*
*/
@Deprecated /* Please use `tags` instead. */
@Export(name="tagsAll", refs={Map.class,String.class}, tree="[0,1,1]")
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy