pub struct Builder { /* private fields */ }
Expand description
A builder for AwsIamInstanceProfile
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn create_date(self, input: impl Into<String>) -> Self
pub fn create_date(self, input: impl Into<String>) -> Self
Indicates when the instance profile was created.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
sourcepub fn set_create_date(self, input: Option<String>) -> Self
pub fn set_create_date(self, input: Option<String>) -> Self
Indicates when the instance profile was created.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
sourcepub fn instance_profile_id(self, input: impl Into<String>) -> Self
pub fn instance_profile_id(self, input: impl Into<String>) -> Self
The identifier of the instance profile.
sourcepub fn set_instance_profile_id(self, input: Option<String>) -> Self
pub fn set_instance_profile_id(self, input: Option<String>) -> Self
The identifier of the instance profile.
sourcepub fn instance_profile_name(self, input: impl Into<String>) -> Self
pub fn instance_profile_name(self, input: impl Into<String>) -> Self
The name of the instance profile.
sourcepub fn set_instance_profile_name(self, input: Option<String>) -> Self
pub fn set_instance_profile_name(self, input: Option<String>) -> Self
The name of the instance profile.
sourcepub fn roles(self, input: AwsIamInstanceProfileRole) -> Self
pub fn roles(self, input: AwsIamInstanceProfileRole) -> Self
Appends an item to roles
.
To override the contents of this collection use set_roles
.
The roles associated with the instance profile.
sourcepub fn set_roles(self, input: Option<Vec<AwsIamInstanceProfileRole>>) -> Self
pub fn set_roles(self, input: Option<Vec<AwsIamInstanceProfileRole>>) -> Self
The roles associated with the instance profile.
sourcepub fn build(self) -> AwsIamInstanceProfile
pub fn build(self) -> AwsIamInstanceProfile
Consumes the builder and constructs a AwsIamInstanceProfile
.