pub struct Toolchain {
pub role_arn: Option<String>,
pub source: ToolchainSource,
pub stack_parameters: Option<HashMap<String, String>>,
}
Expand description
The toolchain template file provided with the project request. AWS CodeStar uses the template to provision the toolchain stack in AWS CloudFormation.
Fields§
§role_arn: Option<String>
The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.
source: ToolchainSource
The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.
stack_parameters: Option<HashMap<String, String>>
The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.
Trait Implementations§
impl StructuralPartialEq for Toolchain
Auto Trait Implementations§
impl Freeze for Toolchain
impl RefUnwindSafe for Toolchain
impl Send for Toolchain
impl Sync for Toolchain
impl Unpin for Toolchain
impl UnwindSafe for Toolchain
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