1. Packages
  2. AWS
  3. API Docs
  4. elasticache
  5. ReservedCacheNode
AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi

aws.elasticache.ReservedCacheNode

Explore with Pulumi AI

aws logo
AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi

    Manages an ElastiCache Reserved Cache Node.

    NOTE: Once created, a reservation is valid for the duration of the provided offering_id and cannot be deleted. Performing a destroy will only remove the resource from state. For more information see ElastiCache Reserved Nodes Documentation and PurchaseReservedCacheNodesOffering.

    NOTE: Due to the expense of testing this resource, we provide it as best effort. If you find it useful, and have the ability to help test or notice issues, consider reaching out to us on GitHub.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      exampleReservedCacheNode:
        type: aws:elasticache:ReservedCacheNode
        name: example
        properties:
          reservedCacheNodesOfferingId: ${example.offeringId}
          id: optionalCustomReservationID
          cacheNodeCount: 3
    variables:
      example:
        fn::invoke:
          Function: aws:elasticache:getReservedCacheNodeOffering
          Arguments:
            cacheNodeType: cache.t4g.small
            duration: P1Y
            offeringType: No Upfront
            productDescription: redis
    

    Create ReservedCacheNode Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ReservedCacheNode(name: string, args: ReservedCacheNodeArgs, opts?: CustomResourceOptions);
    @overload
    def ReservedCacheNode(resource_name: str,
                          args: ReservedCacheNodeArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ReservedCacheNode(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          reserved_cache_nodes_offering_id: Optional[str] = None,
                          cache_node_count: Optional[float] = None,
                          tags: Optional[Mapping[str, str]] = None,
                          timeouts: Optional[ReservedCacheNodeTimeoutsArgs] = None)
    func NewReservedCacheNode(ctx *Context, name string, args ReservedCacheNodeArgs, opts ...ResourceOption) (*ReservedCacheNode, error)
    public ReservedCacheNode(string name, ReservedCacheNodeArgs args, CustomResourceOptions? opts = null)
    public ReservedCacheNode(String name, ReservedCacheNodeArgs args)
    public ReservedCacheNode(String name, ReservedCacheNodeArgs args, CustomResourceOptions options)
    
    type: aws:elasticache:ReservedCacheNode
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ReservedCacheNodeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ReservedCacheNodeArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ReservedCacheNodeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReservedCacheNodeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReservedCacheNodeArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var reservedCacheNodeResource = new Aws.ElastiCache.ReservedCacheNode("reservedCacheNodeResource", new()
    {
        ReservedCacheNodesOfferingId = "string",
        CacheNodeCount = 0,
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.ElastiCache.Inputs.ReservedCacheNodeTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := elasticache.NewReservedCacheNode(ctx, "reservedCacheNodeResource", &elasticache.ReservedCacheNodeArgs{
    	ReservedCacheNodesOfferingId: pulumi.String("string"),
    	CacheNodeCount:               pulumi.Float64(0),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &elasticache.ReservedCacheNodeTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var reservedCacheNodeResource = new ReservedCacheNode("reservedCacheNodeResource", ReservedCacheNodeArgs.builder()
        .reservedCacheNodesOfferingId("string")
        .cacheNodeCount(0)
        .tags(Map.of("string", "string"))
        .timeouts(ReservedCacheNodeTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    reserved_cache_node_resource = aws.elasticache.ReservedCacheNode("reservedCacheNodeResource",
        reserved_cache_nodes_offering_id="string",
        cache_node_count=0,
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const reservedCacheNodeResource = new aws.elasticache.ReservedCacheNode("reservedCacheNodeResource", {
        reservedCacheNodesOfferingId: "string",
        cacheNodeCount: 0,
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:elasticache:ReservedCacheNode
    properties:
        cacheNodeCount: 0
        reservedCacheNodesOfferingId: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

    ReservedCacheNode Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ReservedCacheNode resource accepts the following input properties:

    ReservedCacheNodesOfferingId string

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    CacheNodeCount double
    Tags Dictionary<string, string>
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts ReservedCacheNodeTimeouts
    ReservedCacheNodesOfferingId string

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    CacheNodeCount float64
    Tags map[string]string
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts ReservedCacheNodeTimeoutsArgs
    reservedCacheNodesOfferingId String

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    cacheNodeCount Double
    tags Map<String,String>
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts ReservedCacheNodeTimeouts
    reservedCacheNodesOfferingId string

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    cacheNodeCount number
    tags {[key: string]: string}
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts ReservedCacheNodeTimeouts
    reserved_cache_nodes_offering_id str

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    cache_node_count float
    tags Mapping[str, str]
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts ReservedCacheNodeTimeoutsArgs
    reservedCacheNodesOfferingId String

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    cacheNodeCount Number
    tags Map<String>
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ReservedCacheNode resource produces the following output properties:

    Arn string
    ARN for the reserved cache node.
    CacheNodeType string
    Node type for the reserved cache nodes.
    Duration string
    Duration of the reservation as an RFC3339 duration.
    FixedPrice double
    Fixed price charged for this reserved cache node.
    Id string
    The provider-assigned unique ID for this managed resource.
    OfferingType string
    Offering type of this reserved cache node.
    ProductDescription string
    Engine type for the reserved cache node.
    RecurringCharges List<ReservedCacheNodeRecurringCharge>
    Recurring price charged to run this reserved cache node.
    StartTime string
    Time the reservation started.
    State string
    State of the reserved cache node.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    UsagePrice double
    Hourly price charged for this reserved cache node.
    Arn string
    ARN for the reserved cache node.
    CacheNodeType string
    Node type for the reserved cache nodes.
    Duration string
    Duration of the reservation as an RFC3339 duration.
    FixedPrice float64
    Fixed price charged for this reserved cache node.
    Id string
    The provider-assigned unique ID for this managed resource.
    OfferingType string
    Offering type of this reserved cache node.
    ProductDescription string
    Engine type for the reserved cache node.
    RecurringCharges []ReservedCacheNodeRecurringCharge
    Recurring price charged to run this reserved cache node.
    StartTime string
    Time the reservation started.
    State string
    State of the reserved cache node.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    UsagePrice float64
    Hourly price charged for this reserved cache node.
    arn String
    ARN for the reserved cache node.
    cacheNodeType String
    Node type for the reserved cache nodes.
    duration String
    Duration of the reservation as an RFC3339 duration.
    fixedPrice Double
    Fixed price charged for this reserved cache node.
    id String
    The provider-assigned unique ID for this managed resource.
    offeringType String
    Offering type of this reserved cache node.
    productDescription String
    Engine type for the reserved cache node.
    recurringCharges List<ReservedCacheNodeRecurringCharge>
    Recurring price charged to run this reserved cache node.
    startTime String
    Time the reservation started.
    state String
    State of the reserved cache node.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    usagePrice Double
    Hourly price charged for this reserved cache node.
    arn string
    ARN for the reserved cache node.
    cacheNodeType string
    Node type for the reserved cache nodes.
    duration string
    Duration of the reservation as an RFC3339 duration.
    fixedPrice number
    Fixed price charged for this reserved cache node.
    id string
    The provider-assigned unique ID for this managed resource.
    offeringType string
    Offering type of this reserved cache node.
    productDescription string
    Engine type for the reserved cache node.
    recurringCharges ReservedCacheNodeRecurringCharge[]
    Recurring price charged to run this reserved cache node.
    startTime string
    Time the reservation started.
    state string
    State of the reserved cache node.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    usagePrice number
    Hourly price charged for this reserved cache node.
    arn str
    ARN for the reserved cache node.
    cache_node_type str
    Node type for the reserved cache nodes.
    duration str
    Duration of the reservation as an RFC3339 duration.
    fixed_price float
    Fixed price charged for this reserved cache node.
    id str
    The provider-assigned unique ID for this managed resource.
    offering_type str
    Offering type of this reserved cache node.
    product_description str
    Engine type for the reserved cache node.
    recurring_charges Sequence[ReservedCacheNodeRecurringCharge]
    Recurring price charged to run this reserved cache node.
    start_time str
    Time the reservation started.
    state str
    State of the reserved cache node.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    usage_price float
    Hourly price charged for this reserved cache node.
    arn String
    ARN for the reserved cache node.
    cacheNodeType String
    Node type for the reserved cache nodes.
    duration String
    Duration of the reservation as an RFC3339 duration.
    fixedPrice Number
    Fixed price charged for this reserved cache node.
    id String
    The provider-assigned unique ID for this managed resource.
    offeringType String
    Offering type of this reserved cache node.
    productDescription String
    Engine type for the reserved cache node.
    recurringCharges List<Property Map>
    Recurring price charged to run this reserved cache node.
    startTime String
    Time the reservation started.
    state String
    State of the reserved cache node.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    usagePrice Number
    Hourly price charged for this reserved cache node.

    Look up Existing ReservedCacheNode Resource

    Get an existing ReservedCacheNode resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ReservedCacheNodeState, opts?: CustomResourceOptions): ReservedCacheNode
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            cache_node_count: Optional[float] = None,
            cache_node_type: Optional[str] = None,
            duration: Optional[str] = None,
            fixed_price: Optional[float] = None,
            offering_type: Optional[str] = None,
            product_description: Optional[str] = None,
            recurring_charges: Optional[Sequence[ReservedCacheNodeRecurringChargeArgs]] = None,
            reserved_cache_nodes_offering_id: Optional[str] = None,
            start_time: Optional[str] = None,
            state: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            timeouts: Optional[ReservedCacheNodeTimeoutsArgs] = None,
            usage_price: Optional[float] = None) -> ReservedCacheNode
    func GetReservedCacheNode(ctx *Context, name string, id IDInput, state *ReservedCacheNodeState, opts ...ResourceOption) (*ReservedCacheNode, error)
    public static ReservedCacheNode Get(string name, Input<string> id, ReservedCacheNodeState? state, CustomResourceOptions? opts = null)
    public static ReservedCacheNode get(String name, Output<String> id, ReservedCacheNodeState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN for the reserved cache node.
    CacheNodeCount double
    CacheNodeType string
    Node type for the reserved cache nodes.
    Duration string
    Duration of the reservation as an RFC3339 duration.
    FixedPrice double
    Fixed price charged for this reserved cache node.
    OfferingType string
    Offering type of this reserved cache node.
    ProductDescription string
    Engine type for the reserved cache node.
    RecurringCharges List<ReservedCacheNodeRecurringCharge>
    Recurring price charged to run this reserved cache node.
    ReservedCacheNodesOfferingId string

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    StartTime string
    Time the reservation started.
    State string
    State of the reserved cache node.
    Tags Dictionary<string, string>
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ReservedCacheNodeTimeouts
    UsagePrice double
    Hourly price charged for this reserved cache node.
    Arn string
    ARN for the reserved cache node.
    CacheNodeCount float64
    CacheNodeType string
    Node type for the reserved cache nodes.
    Duration string
    Duration of the reservation as an RFC3339 duration.
    FixedPrice float64
    Fixed price charged for this reserved cache node.
    OfferingType string
    Offering type of this reserved cache node.
    ProductDescription string
    Engine type for the reserved cache node.
    RecurringCharges []ReservedCacheNodeRecurringChargeArgs
    Recurring price charged to run this reserved cache node.
    ReservedCacheNodesOfferingId string

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    StartTime string
    Time the reservation started.
    State string
    State of the reserved cache node.
    Tags map[string]string
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Timeouts ReservedCacheNodeTimeoutsArgs
    UsagePrice float64
    Hourly price charged for this reserved cache node.
    arn String
    ARN for the reserved cache node.
    cacheNodeCount Double
    cacheNodeType String
    Node type for the reserved cache nodes.
    duration String
    Duration of the reservation as an RFC3339 duration.
    fixedPrice Double
    Fixed price charged for this reserved cache node.
    offeringType String
    Offering type of this reserved cache node.
    productDescription String
    Engine type for the reserved cache node.
    recurringCharges List<ReservedCacheNodeRecurringCharge>
    Recurring price charged to run this reserved cache node.
    reservedCacheNodesOfferingId String

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    startTime String
    Time the reservation started.
    state String
    State of the reserved cache node.
    tags Map<String,String>
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ReservedCacheNodeTimeouts
    usagePrice Double
    Hourly price charged for this reserved cache node.
    arn string
    ARN for the reserved cache node.
    cacheNodeCount number
    cacheNodeType string
    Node type for the reserved cache nodes.
    duration string
    Duration of the reservation as an RFC3339 duration.
    fixedPrice number
    Fixed price charged for this reserved cache node.
    offeringType string
    Offering type of this reserved cache node.
    productDescription string
    Engine type for the reserved cache node.
    recurringCharges ReservedCacheNodeRecurringCharge[]
    Recurring price charged to run this reserved cache node.
    reservedCacheNodesOfferingId string

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    startTime string
    Time the reservation started.
    state string
    State of the reserved cache node.
    tags {[key: string]: string}
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ReservedCacheNodeTimeouts
    usagePrice number
    Hourly price charged for this reserved cache node.
    arn str
    ARN for the reserved cache node.
    cache_node_count float
    cache_node_type str
    Node type for the reserved cache nodes.
    duration str
    Duration of the reservation as an RFC3339 duration.
    fixed_price float
    Fixed price charged for this reserved cache node.
    offering_type str
    Offering type of this reserved cache node.
    product_description str
    Engine type for the reserved cache node.
    recurring_charges Sequence[ReservedCacheNodeRecurringChargeArgs]
    Recurring price charged to run this reserved cache node.
    reserved_cache_nodes_offering_id str

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    start_time str
    Time the reservation started.
    state str
    State of the reserved cache node.
    tags Mapping[str, str]
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts ReservedCacheNodeTimeoutsArgs
    usage_price float
    Hourly price charged for this reserved cache node.
    arn String
    ARN for the reserved cache node.
    cacheNodeCount Number
    cacheNodeType String
    Node type for the reserved cache nodes.
    duration String
    Duration of the reservation as an RFC3339 duration.
    fixedPrice Number
    Fixed price charged for this reserved cache node.
    offeringType String
    Offering type of this reserved cache node.
    productDescription String
    Engine type for the reserved cache node.
    recurringCharges List<Property Map>
    Recurring price charged to run this reserved cache node.
    reservedCacheNodesOfferingId String

    ID of the reserved cache node offering to purchase. To determine an reserved_cache_nodes_offering_id, see the aws.elasticache.getReservedCacheNodeOffering data source.

    The following arguments are optional:

    startTime String
    Time the reservation started.
    state String
    State of the reserved cache node.
    tags Map<String>
    Map of tags to assign to the reservation. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    timeouts Property Map
    usagePrice Number
    Hourly price charged for this reserved cache node.

    Supporting Types

    ReservedCacheNodeRecurringCharge, ReservedCacheNodeRecurringChargeArgs

    ReservedCacheNodeTimeouts, ReservedCacheNodeTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import ElastiCache Reserved Cache Node using the id. For example:

    $ pulumi import aws:elasticache/reservedCacheNode:ReservedCacheNode example CustomReservationID
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo
    AWS v6.54.0 published on Friday, Sep 27, 2024 by Pulumi