pub struct CreateEksTarget {Show 15 fields
pub comment: Option<String>,
pub description: Option<String>,
pub eks_access_key_id: String,
pub eks_cluster_ca_cert: String,
pub eks_cluster_endpoint: String,
pub eks_cluster_name: String,
pub eks_region: Option<String>,
pub eks_secret_access_key: String,
pub json: Option<bool>,
pub key: Option<String>,
pub max_versions: Option<String>,
pub name: String,
pub token: Option<String>,
pub uid_token: Option<String>,
pub use_gw_cloud_identity: Option<bool>,
}Expand description
CreateEksTarget : createEKSTarget is a command that creates a new target. [Deprecated: Use target-create-eks command]
Fields§
§comment: Option<String>Deprecated - use description
description: Option<String>Description of the object
eks_access_key_id: StringAccess Key ID
eks_cluster_ca_cert: StringEKS cluster CA certificate
eks_cluster_endpoint: StringEKS cluster URL endpoint
eks_cluster_name: StringEKS cluster name
eks_region: Option<String>Region
eks_secret_access_key: StringSecret Access Key
json: Option<bool>Set output format to JSON
key: Option<String>The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
max_versions: Option<String>Set the maximum number of versions, limited by the account settings defaults.
name: StringTarget name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
use_gw_cloud_identity: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for CreateEksTarget
impl Clone for CreateEksTarget
Source§fn clone(&self) -> CreateEksTarget
fn clone(&self) -> CreateEksTarget
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateEksTarget
impl Debug for CreateEksTarget
Source§impl Default for CreateEksTarget
impl Default for CreateEksTarget
Source§fn default() -> CreateEksTarget
fn default() -> CreateEksTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateEksTarget
impl<'de> Deserialize<'de> for CreateEksTarget
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateEksTarget
impl PartialEq for CreateEksTarget
Source§fn eq(&self, other: &CreateEksTarget) -> bool
fn eq(&self, other: &CreateEksTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateEksTarget
impl Serialize for CreateEksTarget
impl StructuralPartialEq for CreateEksTarget
Auto Trait Implementations§
impl Freeze for CreateEksTarget
impl RefUnwindSafe for CreateEksTarget
impl Send for CreateEksTarget
impl Sync for CreateEksTarget
impl Unpin for CreateEksTarget
impl UnsafeUnpin for CreateEksTarget
impl UnwindSafe for CreateEksTarget
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more