Skip to content

Commit

Permalink
Make iamAction parameters optional
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Jan 29, 2024
1 parent 13bee9b commit d906a80
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public struct AwsIAMAction: StaticTrait {

public static let staticName: ShapeId = "aws.iam#iamAction"
public var selector: Selector { TypeSelector<OperationShape>() }
public let name: String
public let documentation: String
public let relativeDocumentation: String
public let requiredActions: [String]
public let resources: ActionResources
public let createsResources: [String]
public let name: String?
public let documentation: String?
public let relativeDocumentation: String?
public let requiredActions: [String]?
public let resources: ActionResources?
public let createsResources: [String]?
}

/// Provides a custom IAM action name.
Expand Down

0 comments on commit d906a80

Please sign in to comment.