Class SpotInstanceRequestEbsBlockDevice


  • public final class SpotInstanceRequestEbsBlockDevice
    extends java.lang.Object
    • Method Detail

      • deleteOnTermination

        public java.util.Optional<java.lang.Boolean> deleteOnTermination()
        Returns:
        Whether the volume should be destroyed on instance termination. Defaults to `true`.
      • deviceName

        public java.lang.String deviceName()
        Returns:
        Name of the device to mount.
      • encrypted

        public java.util.Optional<java.lang.Boolean> encrypted()
        Returns:
        Enables [EBS encryption](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) on the volume. Defaults to `false`. Cannot be used with `snapshot_id`. Must be configured to perform drift detection.
      • iops

        public java.util.Optional<java.lang.Integer> iops()
        Returns:
        Amount of provisioned [IOPS](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-io-characteristics.html). Only valid for volume_type of `io1`, `io2` or `gp3`.
      • kmsKeyId

        public java.util.Optional<java.lang.String> kmsKeyId()
        Returns:
        Amazon Resource Name (ARN) of the KMS Key to use when encrypting the volume. Must be configured to perform drift detection.
      • snapshotId

        public java.util.Optional<java.lang.String> snapshotId()
        Returns:
        Snapshot ID to mount.
      • tags

        public java.util.Map<java.lang.String,​java.lang.String> tags()
        Returns:
        Map of tags to assign to the device.
      • tagsAll

        public 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.
      • throughput

        public java.util.Optional<java.lang.Integer> throughput()
        Returns:
        Throughput to provision for a volume in mebibytes per second (MiB/s). This is only valid for `volume_type` of `gp3`.
      • volumeId

        public java.util.Optional<java.lang.String> volumeId()
      • volumeSize

        public java.util.Optional<java.lang.Integer> volumeSize()
        Returns:
        Size of the volume in gibibytes (GiB).
      • volumeType

        public java.util.Optional<java.lang.String> volumeType()
        Returns:
        Type of volume. Valid values include `standard`, `gp2`, `gp3`, `io1`, `io2`, `sc1`, or `st1`. Defaults to `gp2`. > **NOTE:** Currently, changes to the `ebs_block_device` configuration of _existing_ resources cannot be automatically detected by this provider. To manage changes and attachments of an EBS block to an instance, use the `aws.ebs.Volume` and `aws.ec2.VolumeAttachment` resources instead. If you use `ebs_block_device` on an `aws.ec2.Instance`, this provider will assume management over the full set of non-root EBS block devices for the instance, treating additional block devices as drift. For this reason, `ebs_block_device` cannot be mixed with external `aws.ebs.Volume` and `aws.ec2.VolumeAttachment` resources for a given instance.